missed adding this

This commit is contained in:
Daniel Barlow 2024-08-28 20:56:29 +01:00
parent fe7b092075
commit 34f37d60d9
1 changed files with 10 additions and 0 deletions

10
pkgs/anoia/run-tests.fnl Normal file
View File

@ -0,0 +1,10 @@
(local fennel (require :fennel))
(local specials (require :fennel.specials))
(local compiler-env
(doto (. (specials.make-compiler-env) :_G)
(tset "RUNNING_TESTS" true)))
(each [_ f (ipairs arg)]
(print :testing f)
(fennel.dofile f { :correlate true :compilerEnv compiler-env }))