summary refs log tree commit diff
path: root/justfile
diff options
context:
space:
mode:
authordozens2024-06-07 17:27:11 -0600
committerdozens2024-06-07 17:27:11 -0600
commit91b1662302c14cf84ca8b90c1f3ec20a585f67a5 (patch)
tree53084ac52460ed61be1308e13ce17dce92ea81d8 /justfile
parentf985dc4e5c9fdec06436c21440c3dc7245369847 (diff)
add ui tests
Diffstat (limited to 'justfile')
-rw-r--r--justfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/justfile b/justfile
index 6fbee75..e5fa402 100644
--- a/justfile
+++ b/justfile
@@ -5,3 +5,7 @@ default:
 # run tests
 test:
   for f in lib/*.test.fnl; do fennel $f | faucet; done
+
+# build expect scripts
+expects:
+  for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done