Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: make test-fs-watch-recursive more robust
The test was failing on OS X when run in parallel with: ``` tools/test.py --repeat=99 -J parallel/test-fs-watch-recursive ``` ENOENT was arising when trying to create a file in the directory created with `fs.mkdtempSync()`. I do not know if this is a bug in OS X, a bug in libuv, or something else. I also do not know this is partially or completely the cause of the flakiness of the test in CI and locally (when run as part of `make test`). In any event, changing to `fs.mkdirSync()` resolved the issue.
- Loading branch information