1
0
forked from dan/liminix
liminix/pkgs/anoia/run-tests.fnl
2024-08-28 20:56:52 +01:00

11 lines
301 B
Fennel

(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 }))