From 5cef6874f6ce8c7ea6e08b0f403e8042cb50bc51 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Fri, 26 Jul 2024 12:33:22 -0600 Subject: [PATCH] install before test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 90c00ae2d..f8afaf29c 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ format: test: $(CORE_SRC) $(ENVIRONMENT_FILE) (cd core && cargo build --features=test && cargo test --features=test) (cd sdk && make test) - (cd container-runtime && npm test) + (cd container-runtime && npm i && npm test) cli: cd core && ./install-cli.sh