We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8caa7ce commit dcf0f39Copy full SHA for dcf0f39
src/test/tester.js
@@ -14,8 +14,8 @@ export async function runAllTests() {
14
15
try {
16
// Run unit tests
17
- await runSanityTests();
18
- await runAceEditorTests();
+ await runSanityTests(write);
+ await runAceEditorTests(write);
19
20
write("\x1b[36m\x1b[1mTests completed!\x1b[0m\n");
21
} catch (error) {
@@ -200,8 +200,8 @@ class TestRunner {
200
201
line(
202
` Tests: ${COLORS.BRIGHT}${total}${COLORS.RESET} | ` +
203
- `${statusColor}Passed: ${this.passed}${COLORS.RESET} | ` +
204
- `${COLORS.RED}Failed: ${this.failed}${COLORS.RESET}`,
+ `${statusColor}Passed: ${this.passed}${COLORS.RESET} | ` +
+ `${COLORS.RED}Failed: ${this.failed}${COLORS.RESET}`,
205
statusColor,
206
);
207
0 commit comments