From 3eec0cfb1818baba16b7199493262eaac4f52e4a Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 6 Nov 2020 11:33:56 +0100 Subject: [PATCH] fix(tests): add lsp & docs to tests We should make the test auto-discover which executables to search for. Maybe even have some functional tests which run the executables. --- shell.nix | 2 ++ test.bash | 2 ++ 2 files changed, 4 insertions(+) diff --git a/shell.nix b/shell.nix index 6d366e7..f8161d4 100644 --- a/shell.nix +++ b/shell.nix @@ -13,5 +13,7 @@ in dhall-bash-simple dhall-nix-simple dhall-yaml-simple + dhall-lsp-simple + dhall-docs-simple ]; } diff --git a/test.bash b/test.bash index 992af5c..ec26325 100755 --- a/test.bash +++ b/test.bash @@ -19,5 +19,7 @@ test_exe dhall-to-json; test_exe dhall-to-bash; test_exe dhall-to-nix; test_exe dhall-to-yaml-ng; +test_exe dhall-docs; +test_exe dhall-lsp-server; exit $ERRORS;