Skip to content

Commit aac0705

Browse files
author
Ives van Hoorne
committed
Fix test
1 parent ecf05f9 commit aac0705

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

packages/app/src/sandbox/compile.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import _debug from 'app/utils/debug';
55
import initializeErrorTransformers from './errors/transformers';
66
import getPreset from './eval';
77
import Manager from './eval/manager';
8-
import TestRunner from './eval/tests/jest-lite';
98
import transformJSON from './console/transform-json';
109

1110
import { 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

0 commit comments

Comments
 (0)