change(web): karma-based KMW tests only run if test action is untargeted

This commit is contained in:
Joshua A. Horton 2023-05-18 12:34:12 +07:00
parent 7c9a7bf566
commit a32cd6ad4f

View file

@ -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