@@ -6,16 +6,17 @@ WRITE_FLAG := --write
66list help ::
77 $(info Available Make targets:)
88 @echo " <COMMON>"
9- @echo " list | help: Print these available make targets"
9+ @echo " list | help: Print these available make targets"
1010 @echo " <LINTING AND FORMATTING>"
11- @echo " biome-format: Runs the biome formatter."
12- @echo " biome-lint: Runs the biome linter."
13- @echo " biome-all: Runs both the lint and formatting commands."
11+ @echo " biome-format: Runs the biome formatter."
12+ @echo " biome-lint: Runs the biome linter."
13+ @echo " biome-all: Runs both the lint and formatting commands."
1414 @echo " (Set BIOME_ARGS to add additional arguments to biome command (ex: make biome-all BIOME_ARGS=write))"
1515 @echo " <PRE-COMMIT>"
16- @echo " setup-pre-commit: Sets up pre-commit (assuming it is installed)"
16+ @echo " setup-pre-commit: Sets up pre-commit (assuming it is installed)"
1717 @echo " <PLAYWRIGHT TESTS>"
18- @echo " test: Runs playwright against the old theme."
18+ @echo " test: Runs playwright against the old theme."
19+ @echo " tests-update-screenshots: Runs playwright against the old theme."
1920
2021.PHONY : biome-format biome-lint biome-all setup-pre-commit tests
2122FLAG :=
@@ -41,4 +42,6 @@ setup-pre-commit:
4142 fi
4243
4344tests :
44- cd tests && npx playwright test
45+ cd tests && npx playwright test
46+ tests-update-screenshots :
47+ cd tests && npx playwright test --update-snapshots
0 commit comments