Skip to content

Commit

Permalink
Fix playwright exec
Browse files Browse the repository at this point in the history
npm does not let you run binaries like yarn does, as far as I know.
  • Loading branch information
code-asher committed Oct 15, 2024
1 parent d2ce1e4 commit 184800a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/dev/test-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ main() {
fi

cd test
npm run playwright test "$@"
./node_modules/.bin/playwright test "$@"
}

main "$@"

0 comments on commit 184800a

Please sign in to comment.