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 7a36ca4 commit fbbdfdcCopy full SHA for fbbdfdc
1 file changed
test/parallel/test-debugger-run-after-quit-restart.js
@@ -42,6 +42,7 @@ const path = require('path');
42
assert.match(cli.output, /Use `run` to start the app again/);
43
})
44
.then(() => cli.command('run'))
45
+ .then(() => cli.waitFor(/ ok\n/))
46
.then(() => cli.waitForInitialBreak())
47
.then(() => cli.waitForPrompt())
48
.then(() => {
@@ -58,9 +59,9 @@ const path = require('path');
58
59
);
60
61
.then(() => cli.command('restart'))
- .then(() => cli.waitFor(/Debugger attached\./))
62
- .then(() => cli.waitForPrompt())
63
64
+ .then(() => cli.waitForPrompt())
65
66
assert.deepStrictEqual(
67
cli.breakInfo,
@@ -74,6 +75,7 @@ const path = require('path');
74
75
76
77
78
79
80
81
0 commit comments