diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-10-04 11:22:23 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-10-04 11:22:23 +0200 |
commit | f72c9d076057729d98f12235c00482710d166cf8 (patch) | |
tree | 2d7dca5a956e08cbe3b9361e49b433d651e51e10 /Makefile | |
parent | 9b5bd101f7c511a9a0dd4a12a5480ff2628f0b50 (diff) |
fix tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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 |