From ce70ea8a854abc9ffc114b619a21edd5cc7f374c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 10 Apr 2021 19:32:09 -0700 Subject: [PATCH] test: skip fs.watch() test on IBMi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: https://github.com/nodejs/node/pull/38192 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso --- test/pummel/test-fs-watch-non-recursive.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/pummel/test-fs-watch-non-recursive.js b/test/pummel/test-fs-watch-non-recursive.js index b9a6cd6dcfb1d0..49071a965f1737 100644 --- a/test/pummel/test-fs-watch-non-recursive.js +++ b/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');