We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07065d0 commit 8fdd4c5Copy full SHA for 8fdd4c5
test/parallel/test-runner-watch-mode.mjs
@@ -1,12 +1,16 @@
1
// Flags: --expose-internals
2
-import '../common/index.mjs';
+import * as common from '../common/index.mjs';
3
import path from 'node:path';
4
import { describe, it } from 'node:test';
5
import { spawn } from 'node:child_process';
6
import { writeFileSync } from 'node:fs';
7
import util from 'internal/util';
8
import tmpdir from '../common/tmpdir.js';
9
10
+
11
+if (common.isIBMi)
12
+ common.skip('IBMi does not support `fs.watch()`');
13
14
tmpdir.refresh();
15
16
// This test updates these files repeatedly,
0 commit comments