summaryrefslogtreecommitdiff
path: root/test/parallel/test-timer-immediate.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-05-14 16:16:33 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2018-05-19 17:55:57 +0200
commitbecc3ec372baeef0a4b89923968d874010966c49 (patch)
treed2b29d41da5e3ebde58d2ae04612e28b988c6b28 /test/parallel/test-timer-immediate.js
parentf954aba39ee02193beb2dbddc6c0ea0edcca7c74 (diff)
downloadandroid-node-v8-becc3ec372baeef0a4b89923968d874010966c49.tar.gz
android-node-v8-becc3ec372baeef0a4b89923968d874010966c49.tar.bz2
android-node-v8-becc3ec372baeef0a4b89923968d874010966c49.zip
test: remove common.globalCheck
This flag is partially used in tests where it was not necessary and it is always possible to replace this flag with `common.allowGlobals`. This makes sure all globals are truly tested for. PR-URL: https://github.com/nodejs/node/pull/20717 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'test/parallel/test-timer-immediate.js')
-rw-r--r--test/parallel/test-timer-immediate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-timer-immediate.js b/test/parallel/test-timer-immediate.js
index 385fa4baca..b0f52db1b7 100644
--- a/test/parallel/test-timer-immediate.js
+++ b/test/parallel/test-timer-immediate.js
@@ -1,5 +1,5 @@
'use strict';
const common = require('../common');
-common.globalCheck = false;
global.process = {}; // Boom!
+common.allowGlobals(global.process);
setImmediate(common.mustCall());