diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-08-26 19:03:00 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-08-27 00:37:15 +0100 |
commit | 794f0740fa98a218bb210da1d96f39409e5907c6 (patch) | |
tree | c4869a3d7f0613e33c8d14e840bcf0cc0fb17cb1 /bin | |
parent | 0d6bf1f289cc6cb247afff8c5f2cdc2277ac94c6 (diff) | |
download | gleam_stdlib-794f0740fa98a218bb210da1d96f39409e5907c6.tar.gz gleam_stdlib-794f0740fa98a218bb210da1d96f39409e5907c6.zip |
Regex compile
Diffstat (limited to 'bin')
-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); |