From cff98b5df4984a35b1340834f9c99d8c86478569 Mon Sep 17 00:00:00 2001 From: James Wampler Date: Sat, 4 Jul 2026 18:36:37 -0700 Subject: [PATCH] Use npm run e2e instead of npx playwright in the smoke container npx resolved the registry's generic "playwright" package instead of the locally installed @playwright/test bin, triggering an unwanted fresh install and "No tests found". npm run e2e uses the project's own node_modules/.bin unambiguously. --- scripts/ci/smoke-qa.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/smoke-qa.sh b/scripts/ci/smoke-qa.sh index 03a57ce..39c7927 100755 --- a/scripts/ci/smoke-qa.sh +++ b/scripts/ci/smoke-qa.sh @@ -42,6 +42,6 @@ docker run --rm \ -e "E2E_BASE_URL=$BASE_URL" \ -v "$CI_ROOT:/work" -w /work/src/admin \ "mcr.microsoft.com/playwright:v${PW_VERSION}-noble" \ - npx playwright test + npm run e2e log "smoke-qa.sh complete - QA environment validated end to end"