Fix playwright exec

npm does not let you run binaries like yarn does, as far as I know.
This commit is contained in:
Asher 2024-10-15 15:15:10 -08:00
parent d2ce1e4240
commit 184800a94f
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ main() {
fi
cd test
npm run playwright test "$@"
./node_modules/.bin/playwright test "$@"
}
main "$@"