Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions benchmark/fs/bench-watch-recursive.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
// On Linux and other platforms without a native recursive watcher this is
// implemented in JavaScript on top of per-directory watchers.

if (process.platform === 'os400') {
console.log('Skipping: IBMi does not support `fs.watch()`');
process.exit(0);
}

const common = require('../common');
const fs = require('fs');
const path = require('path');
Expand Down
4 changes: 4 additions & 0 deletions test/parallel/test-vfs-real-provider-watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
// watch / promises.watch / watchFile through RealFSProvider.

const common = require('../common');

if (common.isIBMi)
common.skip('IBMi does not support `fs.watch()`');

const tmpdir = require('../common/tmpdir');
const assert = require('assert');
const fs = require('fs');
Expand Down
Loading