Skip to content

Commit

Permalink
test: skip fs.watch() test on IBMi
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Trott authored and targos committed May 1, 2021
1 parent 5667d0a commit ce70ea8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/pummel/test-fs-watch-non-recursive.js
Expand Up @@ -21,6 +21,11 @@

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

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

const path = require('path');
const fs = require('fs');

Expand Down

0 comments on commit ce70ea8

Please sign in to comment.