Skip to content

Commit 65ee417

Browse files
committed
fixup! fixup! test,debugger: migrate node-inspect tests to core
1 parent fdd596e commit 65ee417

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/inspector-cli/test-inspector-cli-auto-resume.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ addLibraryPath(process.env);
1717
const scriptFullPath = fixtures.path('inspector-cli', 'break.js');
1818
const script = path.relative(process.cwd(), scriptFullPath);
1919

20-
const cli = startCLI([script], [], {
21-
env: { NODE_INSPECT_RESUME_ON_START: '1' }
22-
});
20+
const env = { ...process.env };
21+
env.NODE_INSPECT_RESUME_ON_START = '1';
22+
23+
const cli = startCLI([script], [], { env });
2324

2425
cli.waitForInitialBreak()
2526
.then(() => {

0 commit comments

Comments
 (0)