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 cde2d9c commit ab4ab84Copy full SHA for ab4ab84
test/sequential/test-performance.js
@@ -56,7 +56,14 @@ assert(inited < 15000);
56
assert.strictEqual(performance.nodeTiming.name, 'node');
57
assert.strictEqual(performance.nodeTiming.entryType, 'node');
58
59
-const delay = 250;
+let delay = 250;
60
+
61
+if (common.isAndroid) {
62
+ // Use a more generous initial delay on Android, taking into account
63
+ // Application and Activity start time.
64
+ delay = 2000;
65
+}
66
67
function checkNodeTiming(props) {
68
console.log(props);
69
0 commit comments