Skip to content

Commit

Permalink
Update test/sequential/test-debugger-auto-resume.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Sep 25, 2022
1 parent 6ad42a8 commit 52f07d8
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions test/sequential/test-debugger-auto-resume.mjs
Expand Up @@ -25,13 +25,11 @@ addLibraryPath(process.env);
env,
});

{
await cli.waitForInitialBreak();
deepStrictEqual(cli.breakInfo, {
filename: script,
line: 10,
});
const code = await cli.quit();
strictEqual(code, 0);
}
await cli.waitForInitialBreak();
deepStrictEqual(cli.breakInfo, {
filename: script,
line: 10,
});
const code = await cli.quit();
strictEqual(code, 0);
}

0 comments on commit 52f07d8

Please sign in to comment.