From 184800a94f9cff135afd0f8d51d9015d2f893da3 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 15 Oct 2024 15:15:10 -0800 Subject: [PATCH] Fix playwright exec npm does not let you run binaries like yarn does, as far as I know. --- ci/dev/test-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dev/test-e2e.sh b/ci/dev/test-e2e.sh index dec058e13..fa7488239 100755 --- a/ci/dev/test-e2e.sh +++ b/ci/dev/test-e2e.sh @@ -44,7 +44,7 @@ main() { fi cd test - npm run playwright test "$@" + ./node_modules/.bin/playwright test "$@" } main "$@"