X Tutup
The Wayback Machine - https://web.archive.org/web/20210829083926/https://github.com/nodejs/node/commit/95ca351fd8
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 committed Apr 11, 2021
1 parent f5eea17 commit 95ca351fd8ebf26d67123eb5f85bc17b120bc17f
Showing with 5 additions and 0 deletions.
  1. +5 −0 test/pummel/test-fs-watch-non-recursive.js
@@ -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 95ca351

Please sign in to comment.
X Tutup