Skip to content

Commit 35f6c86

Browse files
committedJan 11, 2024
Fix potential bug with watch mode when no failed test files are written
Don't emit the 'touched-files' event, since the watcher assumes that comes with a files value. Fixes #3285
1 parent fde8671 commit 35f6c86

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎lib/api.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,9 @@ export default class Api extends Emittery {
303303
// Allow shared workers to clean up before the run ends.
304304
await Promise.all(deregisteredSharedWorkers);
305305
const files = scheduler.storeFailedTestFiles(runStatus, this.options.cacheEnabled === false ? null : this._createCacheDir());
306-
runStatus.emitStateChange({type: 'touched-files', files});
306+
if (files) {
307+
runStatus.emitStateChange({type: 'touched-files', files});
308+
}
307309
} catch (error) {
308310
runStatus.emitStateChange({type: 'internal-error', err: serializeError(error)});
309311
}

0 commit comments

Comments
 (0)
Please sign in to comment.