From c0326da0ccd12c91c476d0ae1c2d4247740fc00d Mon Sep 17 00:00:00 2001 From: Moshe Atlow Date: Tue, 6 Sep 2022 08:10:44 +0300 Subject: [PATCH] test: skip testing `--watch` with `--import` --- test/parallel/test-watch-mode.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-watch-mode.mjs b/test/parallel/test-watch-mode.mjs index 83226c96ca5362..76ab33507f90fa 100644 --- a/test/parallel/test-watch-mode.mjs +++ b/test/parallel/test-watch-mode.mjs @@ -223,7 +223,9 @@ describe('watch mode', { concurrency: false, timeout: 60_0000 }, () => { ].join('\n')); }); - it('should not load --import modules in main process', async () => { + it('should not load --import modules in main process', { + skip: 'enable once --import is backported', + }, async () => { const file = createTmpFile(''); const imported = fixtures.fileURL('watch-mode/process_exit.js'); const args = ['--import', imported, file];