From 0c01e22679b8e1b225981d8b16dd28484079faf5 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 12 Nov 2020 10:52:34 -0500 Subject: [PATCH] add devDeps install on test call Signed-off-by: Sebastian Malton --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c53d79fc6..074e6664db 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ build-extensions: $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install && npm run build || exit);) test-extensions: - $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm run test || exit);) + $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install --dev && npm run test || exit);) build-npm: build-extension-types yarn npm:fix-package-version