test(tier1): add e2e-install target; clarify limiter docs; label brand sample

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Ben Stull
2026-06-03 23:04:54 -07:00
parent 2746242022
commit 759a42e589
3 changed files with 10 additions and 2 deletions
+4 -1
View File
@@ -1,4 +1,4 @@
.PHONY: tier1-up tier1-down tier1-logs fe-unit e2e
.PHONY: tier1-up tier1-down tier1-logs fe-unit e2e e2e-install
tier1-up:
docker compose -f testing/docker-compose.yml up --build -d
@@ -12,5 +12,8 @@ tier1-logs:
fe-unit:
cd frontend && npm run test:run
e2e-install:
cd e2e && npm ci && npx playwright install chromium
e2e:
cd e2e && BASE_URL=$${BASE_URL:-http://localhost:8080} MAILSINK_URL=$${MAILSINK_URL:-http://localhost:8025} npm run e2e