File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -218,12 +218,10 @@ export default class Api extends Emittery {
218
218
}
219
219
220
220
runStatus . on ( 'stateChange' , record => {
221
- if ( record . testFile && ! timedOutWorkerFiles . has ( record . testFile ) ) {
221
+ if ( record . testFile && ! timedOutWorkerFiles . has ( record . testFile ) && record . type !== 'worker-stderr' && record . type !== 'worker-stdout' ) {
222
222
// Debounce the timer whenever there is activity from workers that
223
223
// haven't already timed out.
224
- if ( record . type !== 'worker-stderr' && record . type !== 'worker-stdout' ) {
225
- timeoutTrigger . debounce ( ) ;
226
- }
224
+ timeoutTrigger . debounce ( ) ;
227
225
}
228
226
229
227
if ( failFast && ( record . type === 'hook-failed' || record . type === 'test-failed' || record . type === 'worker-failed' ) ) {
You can’t perform that action at this time.
0 commit comments