()
| 9 | const { setTimeout } = require('node:timers/promises'); |
| 10 | |
| 11 | function skipIfNoWatch() { |
| 12 | if (common.isIBMi) { |
| 13 | common.skip('IBMi does not support `fs.watch()`'); |
| 14 | } |
| 15 | |
| 16 | if (common.isAIX) { |
| 17 | common.skip('folder watch capability is limited in AIX.'); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | function skipIfNoWatchModeSignals() { |
| 22 | if (common.isWindows) { |
no test coverage detected
searching dependent graphs…