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 5168472 commit 5736b8dCopy full SHA for 5736b8d
test/common.js
@@ -245,10 +245,15 @@ exports.platformTimeout = function(ms) {
245
if (process.arch !== 'arm')
246
return ms;
247
248
- if (process.config.variables.arm_version === '6')
+ const armv = process.config.variables.arm_version;
249
+
250
+ if (armv === '6')
251
return 7 * ms; // ARMv6
252
- return 2 * ms; // ARMv7 and up.
253
+ if (armv === '7')
254
+ return 2 * ms; // ARMv7
255
256
+ return ms; // ARMv8+
257
};
258
259
var knownGlobals = [setTimeout,
0 commit comments