From f387133c21fd7ad186842675b9a85dd476316b6e Mon Sep 17 00:00:00 2001 From: Jesse Hallam Date: Thu, 26 Jul 2018 15:25:04 -0400 Subject: [PATCH] Makefile: webapp test should depend on npm install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ed354f1..eacb0bf 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ endif # test runs any lints and unit tests defined for the server and webapp, if they exist .PHONY: test -test: +test: webapp/.npminstall ifneq ($(HAS_SERVER),) cd server && $(GO) test -v -coverprofile=coverage.txt ./... endif