mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
test: skip test-watch-mode inspect when no inspector
The test for watch mode with inspect fails when the inspector is not available (such as when configured with `--without-ssl`). This commit skips the test in such cases. PR-URL: https://github.com/nodejs/node/pull/59440 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
a4b4eca94c
commit
ff11b59569
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ console.log(values.random);
|
|||
]);
|
||||
});
|
||||
|
||||
it('should run when `--watch --inspect`', async () => {
|
||||
it('should run when `--watch --inspect`', { skip: !process.features.inspector }, async () => {
|
||||
const file = createTmpFile();
|
||||
const args = ['--watch', '--inspect', file];
|
||||
const { stdout, stderr } = await runWriteSucceed({ file, watchedFile: file, watchFlag: null, args });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue