Skip to content

Commit

Permalink
fixup! skip AIX as watch is limited
Browse files Browse the repository at this point in the history
  • Loading branch information
jakecastelli committed Aug 8, 2024
1 parent d8c53f8 commit b1e06fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/parallel/test-runner-watch-mode-complex.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ import { writeFileSync, unlinkSync } from 'node:fs';
import util from 'internal/util';
import tmpdir from '../common/tmpdir.js';


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

if (common.isAIX)
common.skip('folder watch capability is limited in AIX.');

tmpdir.refresh();

// This test updates these files repeatedly,
Expand Down

0 comments on commit b1e06fc

Please sign in to comment.