X Tutup
The Wayback Machine - https://web.archive.org/web/20230218032337/https://github.com/nodejs/node/commit/ce70ea8a85
Skip to content
Permalink
Browse files
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>
  • 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.
@@ -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');

0 comments on commit ce70ea8

Please sign in to comment.
X Tutup