We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f91f9 commit 4cbc589Copy full SHA for 4cbc589
1 file changed
test/sequential/test-watch-mode.mjs
@@ -957,7 +957,10 @@ process.on('message', (message) => {
957
}
958
});
959
960
- it('should not strip --watch when it appears inside a quoted NODE_OPTIONS value', async () => {
+ it('should not strip --watch when it appears inside a quoted NODE_OPTIONS value', {
961
+ // Honoring --require from NODE_OPTIONS is required for this test.
962
+ skip: !!process.config.variables.node_without_node_options,
963
+ }, async () => {
964
// Use /tmp to avoid CI directories with special characters (e.g. ")
965
// that would break NODE_OPTIONS parsing.
966
const watchDir = path.join(os.tmpdir(), 'test for --watch parsing');
0 commit comments