Skip to content

Commit

Permalink
fix the install command
Browse files Browse the repository at this point in the history
  • Loading branch information
RFSH committed Dec 3, 2024
1 parent 7ee5e32 commit 6498094
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ ALL_MANUAL_TESTS=$(Manualrecordset)
define make_test
rc=0; \
for file in $(1); do \
npx playwright test --project=chromium $(2) --config $$file || rc=1; \
npx playwright test --project=chrome $(2) --config $$file || rc=1; \
done; \
exit $$rc;
endef
Expand Down Expand Up @@ -400,6 +400,7 @@ npm-install-modules:

# install packages needed for production and development (including testing)
# --include=dev makes sure to ignore NODE_ENV and install everything
# --no-shell: https://github.com/microsoft/playwright/issues/33566
.PHONY: npm-install-all-modules
npm-install-all-modules:
@npm clean-install --include=dev
Expand Down

0 comments on commit 6498094

Please sign in to comment.