summary refs log tree commit diff
path: root/justfile
diff options
context:
space:
mode:
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