Skip to content

Commit

Permalink
fixup: also pass env
Browse files Browse the repository at this point in the history
  • Loading branch information
bzoz committed Aug 20, 2020
1 parent aa20c6f commit 15ac48a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/parallel/test-unicode-node-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ if (process.argv.length === 2) {
const result = cp.spawnSync(process.argv0,
['--expose-internals', __filename, 'test'],
{
env: { NODE_OPTIONS },
env: {
...process.env,
NODE_OPTIONS
},
stdio: 'inherit'
});
assert.strictEqual(result.status, 0);
Expand Down

0 comments on commit 15ac48a

Please sign in to comment.