Update NG test in the makefile

This will cause the output to be more verbose and to bail on error

Change-Id: I98a2528641320063c449f3b69f38d62442482904
This commit is contained in:
Schiefelbein, Andrew 2020-09-17 10:30:27 -05:00
parent b7260326eb
commit 04565d48b6
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ frontend-build:
frontend-unit-test: $(YARN)
frontend-unit-test:
@echo "Performing frontend unit test step..."
@cd $(WEBDIR) && (PATH="$(PATH):$(NODEJS_BIN)"; $(NG) test) && cd ..
@cd $(WEBDIR) && (PATH="$(PATH):$(NODEJS_BIN)"; $(NG) test --detect-open-handles --bail --force-exit) && cd ..
@echo "Frontend unit tests completed successfully"
.PHONY: frontend-coverage