We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377f6e9 commit c85efaeCopy full SHA for c85efae
test/parallel/test-fs-watch-abort-signal.js
@@ -27,6 +27,6 @@ const fixtures = require('../common/fixtures');
27
const ac = new AbortController();
28
const { signal } = ac;
29
ac.abort();
30
- const wathcer = fs.watch(file, { signal });
31
- wathcer.once('close', common.mustCall());
+ const watcher = fs.watch(file, { signal });
+ watcher.once('close', common.mustCall());
32
}
0 commit comments