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 70a6e25 commit 808a561Copy full SHA for 808a561
lib/watcher.js
@@ -20,7 +20,7 @@ const END_MESSAGE = chalk.gray('Type `r` and press enter to rerun tests\nType `u
20
21
export function available(projectDir) {
22
try {
23
- fs.watch(projectDir, {recursive: true, signal: AbortSignal.abort()});
+ fs.watch(projectDir, {persistent: false, recursive: true, signal: AbortSignal.abort()});
24
} catch (error) {
25
if (error.code === 'ERR_FEATURE_UNAVAILABLE_ON_PLATFORM') {
26
return false;
0 commit comments