We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0569bfe commit abf19daCopy full SHA for abf19da
test/sequential/test-benchmark-async-hooks.js
@@ -0,0 +1,18 @@
1
+'use strict';
2
+
3
+const common = require('../common');
4
5
+if (!common.hasCrypto)
6
+ common.skip('missing crypto');
7
8
+if (!common.enoughTestMem)
9
+ common.skip('Insufficient memory for async_hooks benchmark test');
10
11
+const runBenchmark = require('../common/benchmark');
12
13
+runBenchmark('async_hooks',
14
+ [
15
+ 'method=trackingDisabled',
16
+ 'n=10'
17
+ ],
18
+ {});
0 commit comments