@@ -6,16 +6,17 @@ WRITE_FLAG := --write
6
6
list help ::
7
7
$(info Available Make targets:)
8
8
@echo " <COMMON>"
9
- @echo " list | help: Print these available make targets"
9
+ @echo " list | help: Print these available make targets"
10
10
@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."
14
14
@echo " (Set BIOME_ARGS to add additional arguments to biome command (ex: make biome-all BIOME_ARGS=write))"
15
15
@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)"
17
17
@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."
19
20
20
21
.PHONY : biome-format biome-lint biome-all setup-pre-commit tests
21
22
FLAG :=
@@ -41,4 +42,6 @@ setup-pre-commit:
41
42
fi
42
43
43
44
tests :
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