Skip to content

Commit 7feccda

Browse files
committed
fixup! test: fix skipping behavior for test-runner-run-files-undefined
1 parent 76c4ee9 commit 7feccda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-runner-run-files-undefined.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if (process.env.CHILD === 'true') {
5151
});
5252
} else {
5353
fork(import.meta.filename, [], {
54-
env: { CHILD: 'true' }
54+
env: { ...process.env, CHILD: 'true' }
5555
}).on('exit', common.mustCall((code) => {
5656
assert.strictEqual(code, 0);
5757
}));

0 commit comments

Comments
 (0)