File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -107,13 +107,15 @@ class Watcher {
107
107
}
108
108
}
109
109
110
- this . busy = api . run ( specificFiles || files , { runOnlyExclusive} ) . then ( runStatus => {
111
- runStatus . previousFailCount = this . sumPreviousFailures ( currentVector ) ;
112
- logger . finish ( runStatus ) ;
113
-
114
- const badCounts = runStatus . failCount + runStatus . rejectionCount + runStatus . exceptionCount ;
115
- this . clearLogOnNextRun = this . clearLogOnNextRun && badCounts === 0 ;
116
- } , rethrowAsync ) ;
110
+ this . busy = api . run ( specificFiles || files , { runOnlyExclusive} )
111
+ . then ( runStatus => {
112
+ runStatus . previousFailCount = this . sumPreviousFailures ( currentVector ) ;
113
+ logger . finish ( runStatus ) ;
114
+
115
+ const badCounts = runStatus . failCount + runStatus . rejectionCount + runStatus . exceptionCount ;
116
+ this . clearLogOnNextRun = this . clearLogOnNextRun && badCounts === 0 ;
117
+ } )
118
+ . catch ( rethrowAsync ) ;
117
119
} ;
118
120
119
121
this . testDependencies = [ ] ;
You can’t perform that action at this time.
0 commit comments