Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix address in use error
test-domain-dep0097.js was sporadically failing because it is a parallel
test and uses opens a default inspector port.

This commit changes to bind to a random free port
  • Loading branch information
everett1992 committed May 24, 2022
commit 16aba343bbd208b86d6ca7ddafa775706a3f1d1d
2 changes: 1 addition & 1 deletion test/parallel/test-domain-dep0097.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ process.on('warning', common.mustCall((warning) => {
}));

domain.create().run(() => {
inspector.open();
inspector.open(0);
});