Skip to content

Commit 0121d59

Browse files
Trottgibfahn
authored andcommitted
test: use process.features.debug in common module
Replace process.config.target_defaults.default_configuration check with process.features.debug. PR-URL: #16537 Ref: #4431 (comment) Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent cbf122b commit 0121d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ exports.spawnSyncPwd = function(options) {
340340
};
341341

342342
exports.platformTimeout = function(ms) {
343-
if (process.config.target_defaults.default_configuration === 'Debug')
343+
if (process.features.debug)
344344
ms = 2 * ms;
345345

346346
if (global.__coverage__)

0 commit comments

Comments
 (0)