Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -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'); | ||
|
|
||

