diff options
author | dozens | 2024-06-07 17:27:11 -0600 |
---|---|---|
committer | dozens | 2024-06-07 17:27:11 -0600 |
commit | 91b1662302c14cf84ca8b90c1f3ec20a585f67a5 (patch) | |
tree | 53084ac52460ed61be1308e13ce17dce92ea81d8 /justfile | |
parent | f985dc4e5c9fdec06436c21440c3dc7245369847 (diff) |
add ui tests
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 4 |
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 |