Skip to content

Commit 95ca351

Browse files
committed
test: skip fs.watch() test on IBMi
We've added pummel tests to CI, so we need to add a skip for IBMi for the fs.watch() test there as we have for all the fs.watch() tests elsewhere. PR-URL: #38192 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent f5eea17 commit 95ca351

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/pummel/test-fs-watch-non-recursive.js

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121

2222
'use strict';
2323
const common = require('../common');
24+
25+
if (common.isIBMi) {
26+
common.skip('IBMi does not support fs.watch()');
27+
}
28+
2429
const path = require('path');
2530
const fs = require('fs');
2631

0 commit comments

Comments
 (0)