aboutsummaryrefslogtreecommitdiff
path: root/bin/run-tests.js
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2021-08-26 19:03:00 +0100
committerLouis Pilfold <louis@lpil.uk>2021-08-27 00:37:15 +0100
commit794f0740fa98a218bb210da1d96f39409e5907c6 (patch)
treec4869a3d7f0613e33c8d14e840bcf0cc0fb17cb1 /bin/run-tests.js
parent0d6bf1f289cc6cb247afff8c5f2cdc2277ac94c6 (diff)
downloadgleam_stdlib-794f0740fa98a218bb210da1d96f39409e5907c6.tar.gz
gleam_stdlib-794f0740fa98a218bb210da1d96f39409e5907c6.zip
Regex compile
Diffstat (limited to 'bin/run-tests.js')
-rw-r--r--bin/run-tests.js2
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);