From a32cd6ad4fe79e131af8d2cda46759d30c8a3b72 Mon Sep 17 00:00:00 2001 From: "Joshua A. Horton" Date: Thu, 18 May 2023 12:34:12 +0700 Subject: [PATCH] change(web): karma-based KMW tests only run if test action is untargeted --- web/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/build.sh b/web/build.sh index 4752050f01..522953b5bf 100755 --- a/web/build.sh +++ b/web/build.sh @@ -110,12 +110,12 @@ if builder_has_action build:app/browser; then builder_warn "Modularization work is not yet complete; consumers may find needed API or components to be missing" fi -if builder_start_action test; then +if builder_start_action test:project; then TEST_OPTS= if builder_has_option --ci; then TEST_OPTS=--ci fi ./test.sh $TEST_OPTS - builder_finish_action success test + builder_finish_action success test:project fi