Skip to content

Commit 3edfe2c

Browse files
committed
fix: use bun x playwright to ensure local playwright version is used
1 parent 475d4c5 commit 3edfe2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/run-e2e-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ for test_file in "${TEST_FILES[@]}"; do
4646
echo -e "${YELLOW}Running: $test_file${NC}"
4747
echo "----------------------------------------"
4848

49-
if npx --package=@playwright/test playwright test "$test_file" --reporter=list; then
49+
if bun x playwright test "$test_file" --reporter=list; then
5050
echo -e "${GREEN}$test_file passed${NC}"
5151
else
5252
echo -e "${RED}$test_file failed${NC}"

0 commit comments

Comments
 (0)