diff --git a/test/parallel/test-debugger-exceptions.js b/test/parallel/test-debugger-exceptions.js index 27818612301163..4c79b13aa838e8 100644 --- a/test/parallel/test-debugger-exceptions.js +++ b/test/parallel/test-debugger-exceptions.js @@ -48,13 +48,8 @@ const path = require('path'); await cli.stepCommand('c'); assert.ok(cli.output.includes(`exception in ${script}:9`)); - // Next run: Back to the initial state! It should die again. + // Back to the initial state! It should die again. await cli.command('breakOnNone'); - await cli.command('r'); - await cli.waitFor(/ ok\n/); - await cli.waitForInitialBreak(); - await cli.waitForPrompt(); - assert.deepStrictEqual(cli.breakInfo, { filename: script, line: 1 }); await cli.command('c'); await cli.waitFor(/disconnect/); } finally {