Skip to content

Commit

Permalink
test: handle undefined default_configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Nov 16, 2019
1 parent 312c02d commit 74cf1cd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/common/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@ const enoughTestCpu = Array.isArray(cpus) &&

const rootDir = isWindows ? 'c:\\' : '/';

const buildType = process.config.target_defaults.default_configuration;

const buildType = process.config.target_defaults ?
process.config.target_defaults.default_configuration :
'Release';

// If env var is set then enable async_hook hooks for all tests.
if (process.env.NODE_TEST_WITH_ASYNC_HOOKS) {
Expand Down

0 comments on commit 74cf1cd

Please sign in to comment.