Skip to content

Commit

Permalink
test: fix flaky test-watch-mode-inspect
Browse files Browse the repository at this point in the history
PR-URL: #47403
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
  • Loading branch information
MoLow authored and RafaelGSS committed Apr 8, 2023
1 parent 4405fc8 commit 8eceaae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/sequential/test-watch-mode-inspect.mjs
Expand Up @@ -60,9 +60,10 @@ describe('watch mode - inspect', () => {

// There should be a process per restart and one per parent process.
// Message about Debugger should appear once per restart.
// On some systems restart can happen multiple times.
const restarts = stdout.filter((line) => line === 'safe to debug now').length;
assert.strictEqual(stderr.match(/Debugger listening on ws:\/\//g).length, restarts);
assert.strictEqual(new Set(pids).size, restarts + 1);
assert.ok(stderr.match(/Debugger listening on ws:\/\//g).length >= restarts);
assert.ok(new Set(pids).size >= restarts + 1);
});

it('should prevent attaching debugger with SIGUSR1 to outer process', { skip: common.isWindows }, async () => {
Expand Down

0 comments on commit 8eceaae

Please sign in to comment.