(file)
| 14 | common.skip('IBMi does not support `fs.watch()`'); |
| 15 | |
| 16 | function restart(file) { |
| 17 | appendFileSync(file, '\n'); |
| 18 | const timer = setInterval(() => appendFileSync(file, '\n'), common.platformTimeout(250)); |
| 19 | return () => clearInterval(timer); |
| 20 | } |
| 21 | |
| 22 | function changeDetected(file) { |
| 23 | return `Change detected in ${inspect(file)}`; |
no test coverage detected
searching dependent graphs…