Skip to content

Commit

Permalink
test: remove unnecessary await in test-watch-mode
Browse files Browse the repository at this point in the history
PR-URL: nodejs#55142
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Antoine du Hamel <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Jake Yuesong Li <[email protected]>
  • Loading branch information
iwuliz authored and louwers committed Nov 2, 2024
1 parent 0a45d22 commit f9d2ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sequential/test-watch-mode.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ describe('watch mode', { concurrency: !process.env.TEST_PARALLEL, timeout: 60_00

try {
await restart();
await writeFileSync(envFile, `${envKey}=value1\n${envKey2}=newValue`);
writeFileSync(envFile, `${envKey}=value1\n${envKey2}=newValue`);

// Second restart, after env change
const { stderr, stdout } = await restart();
Expand Down

0 comments on commit f9d2ccb

Please sign in to comment.