Skip to content

Commit 40f10ea

Browse files
committed
test: fix internet/test-inspector-help-page
The webpage at the URL referenced by `node --inspect` was retitled when it was recently moved. Update the test to match the new title "Debugging Node.js" (formerly "Debugging Guide"). Refs: nodejs/nodejs.org#6265 PR-URL: #51693 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
1 parent 5aec3af commit 40f10ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/internet/test-inspector-help-page.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function check(url, cb) {
2828
});
2929

3030
res.on('end', common.mustCall(() => {
31-
assert.match(result, />Debugging Guide</);
31+
assert.match(result, />Debugging Node\.js</);
3232
cb();
3333
}));
3434
})).on('error', common.mustNotCall);

0 commit comments

Comments
 (0)