We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a6203d commit 93b0c78Copy full SHA for 93b0c78
test/inspector-cli/test-inspector-cli-address.js
@@ -16,7 +16,7 @@ function launchTarget(...args) {
16
const childProc = spawn(process.execPath, args);
17
return new Promise((resolve, reject) => {
18
const onExit = () => {
19
- reject(new Error('Child process exits unexpectly'));
+ reject(new Error('Child process exits unexpectedly'));
20
};
21
childProc.on('exit', onExit);
22
childProc.stderr.setEncoding('utf8');
0 commit comments