Skip to content

Commit 184800a

Browse files
committed
Fix playwright exec
npm does not let you run binaries like yarn does, as far as I know.
1 parent d2ce1e4 commit 184800a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/dev/test-e2e.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ main() {
4444
fi
4545

4646
cd test
47-
npm run playwright test "$@"
47+
./node_modules/.bin/playwright test "$@"
4848
}
4949

5050
main "$@"

0 commit comments

Comments
 (0)