We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e69c4d commit 91fddbeCopy full SHA for 91fddbe
test/sequential/test-watch-mode.mjs
@@ -902,7 +902,7 @@ process.on('message', (message) => {
902
assert.deepStrictEqual(stdout, [
903
'hello, world',
904
`Completed running ${inspect(file)}. Waiting for file changes before restarting...`,
905
- ])
+ ]);
906
907
// Update file with syntax error
908
const syntaxErrorContent = `console.log('hello, wor`;
@@ -914,7 +914,7 @@ process.on('message', (message) => {
914
assert.deepStrictEqual(stdout2, [
915
`Restarting ${inspect(file)}`,
916
`Failed running ${inspect(file)}. Waiting for file changes before restarting...`,
917
918
919
writeFileSync(file, `console.log('hello again, world');`);
920
0 commit comments