aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-10-04 11:22:23 +0200
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-10-04 11:22:23 +0200
commitf72c9d076057729d98f12235c00482710d166cf8 (patch)
tree2d7dca5a956e08cbe3b9361e49b433d651e51e10 /Makefile
parent9b5bd101f7c511a9a0dd4a12a5480ff2628f0b50 (diff)
fix tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 35aa2e3..b2783f3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,13 @@
test: test-sh test-elm test-nix
test-sh: tests/sh.sh
- src/extract-sh.sh tests/sh.sh | \
- jq .text -r | \
+ cabal run anissue -- show tests/sh.sh | \
cmp tests/expect
test-elm: tests/elm.elm
- src/extract-elm.sh tests/elm.elm | \
- jq .text -r | \
+ cabal run anissue -- show tests/elm.elm | \
cmp tests/expect
test-nix: tests/nix.nix
- src/extract-nix.sh tests/nix.nix | \
- jq .text -r | \
+ cabal run anissue -- show tests/nix.nix | \
cmp tests/expect