File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import _debug from 'app/utils/debug';
55import initializeErrorTransformers from './errors/transformers' ;
66import getPreset from './eval' ;
77import Manager from './eval/manager' ;
8- import TestRunner from './eval/tests/jest-lite' ;
98import transformJSON from './console/transform-json' ;
109
1110import { resetScreen } from './status-screen' ;
@@ -194,20 +193,20 @@ async function compile({
194193 initializeResizeListener ( ) ;
195194 }
196195
197- //Testing
196+ // Testing
198197 const ttt = Date . now ( ) ;
199- let testRunner = manager . testRunner ;
198+ const testRunner = manager . testRunner ;
200199 testRunner . initialize ( ) ;
201200 testRunner . findTests ( modules ) ;
202201 await testRunner . runTests ( ) ;
203- let aggregatedResults = testRunner . reportResults ( ) ;
202+ const aggregatedResults = testRunner . reportResults ( ) ;
204203 debug ( `Test Evaluation time: ${ Date . now ( ) - ttt } ms` ) ;
205204
206205 dispatch ( {
207206 type : 'test-result' ,
208207 result : transformJSON ( aggregatedResults ) ,
209208 } ) ;
210- //End - Testing
209+ // End - Testing
211210
212211 debug ( `Total time: ${ Date . now ( ) - startTime } ms` ) ;
213212
You can’t perform that action at this time.
0 commit comments