diff options
Diffstat (limited to 'bin/run-tests.js')
-rw-r--r-- | bin/run-tests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/run-tests.js b/bin/run-tests.js index bd5475f..3eaba7c 100644 --- a/bin/run-tests.js +++ b/bin/run-tests.js @@ -17,7 +17,7 @@ async function main() { if (!fnName.endsWith("_test")) continue; try { module[fnName](); - process.stdout.write(`\u001b[${32}m.\u001b[${0}m`); + process.stdout.write(`\u001b[32m.\u001b[0m`); passes++; } catch (error) { let moduleName = "\ngleam/" + entry.name.slice(0, -3); |