Skip to content

Commit 8fdd4c5

Browse files
MoLowruyadorno
authored andcommittedSep 12, 2023
test: skip test-runner-watch-mode on IBMi
PR-URL: #48473 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
1 parent 07065d0 commit 8fdd4c5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎test/parallel/test-runner-watch-mode.mjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
// Flags: --expose-internals
2-
import '../common/index.mjs';
2+
import * as common from '../common/index.mjs';
33
import path from 'node:path';
44
import { describe, it } from 'node:test';
55
import { spawn } from 'node:child_process';
66
import { writeFileSync } from 'node:fs';
77
import util from 'internal/util';
88
import tmpdir from '../common/tmpdir.js';
99

10+
11+
if (common.isIBMi)
12+
common.skip('IBMi does not support `fs.watch()`');
13+
1014
tmpdir.refresh();
1115

1216
// This test updates these files repeatedly,

0 commit comments

Comments
 (0)