From 127ebd8f7881b687461eed666ec4452c9d1724ee Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 16 Jan 2024 00:33:28 +0100 Subject: [PATCH] chore(Makefile): frontend-test-watch --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 517060738..388beca74 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,11 @@ frontend-%: node_modules .PHONY: --frontend-test --frontend-test: karma.conf.js - npx -- karma start --conf karma.conf.js + npx -- karma start --conf karma.conf.js $(WATCH) + +.PHONY: --frontend-test-watch +--frontend-test-watch: WATCH=--single-run false +--frontend-test-watch: --frontend-test node_modules: .npmrc package.json npm ci --cache .npm --prefer-offline