MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add newlines

+4 -3
+1
.gitignore
··· 14 14 !/subprojects/packagefiles 15 15 16 16 *.todo 17 + spec.txt 17 18 todo.txt
+3 -3
examples/spec/run.js
··· 39 39 if (failedMatch) totalFailed += parseInt(failedMatch[1], 10); 40 40 41 41 if (result.exitCode === 0) { 42 - console.log(`${GREEN}โœ“${RESET} ${name}`); 42 + console.log(`${GREEN}โœ“${RESET} ${name}\n`); 43 43 filesPassed++; 44 44 } else { 45 - console.log(`${RED}โœ—${RESET} ${name}`); 45 + console.log(`${RED}โœ—${RESET} ${name}\n`); 46 46 filesFailed++; 47 47 } 48 48 } catch (e) { 49 - console.log(`${RED}โœ—${RESET} ${name} ${DIM}(error)${RESET}`); 49 + console.log(`${RED}โœ—${RESET} ${name} ${DIM}(error)${RESET}\n`); 50 50 filesFailed++; 51 51 } 52 52 }