8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f123f1 commit 0035f3fCopy full SHA for 0035f3f
test/parallel/test-fs-promises-watch-iterator.js
@@ -35,8 +35,11 @@ class WatchTestCase {
35
}
36
37
async writeFiles() {
38
- // Do the write with a delay to ensure that the OS is ready to notify us.
39
- await setTimeout(common.platformTimeout(100));
+ if (common.isMacOS) {
+ // Do the write with a delay to ensure that the OS is ready to notify us.
40
+ // See https://github.com/nodejs/node/issues/52601.
41
+ await setTimeout(common.platformTimeout(100));
42
+ }
43
44
for (const fileName of [...this.files]) {
45
await writeFile(this.filePath(fileName), Date.now() + fileName.repeat(1e4));
0 commit comments