759a42e589
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
505 B
Makefile
20 lines
505 B
Makefile
.PHONY: tier1-up tier1-down tier1-logs fe-unit e2e e2e-install
|
|
|
|
tier1-up:
|
|
docker compose -f testing/docker-compose.yml up --build -d
|
|
|
|
tier1-down:
|
|
docker compose -f testing/docker-compose.yml down -v
|
|
|
|
tier1-logs:
|
|
docker compose -f testing/docker-compose.yml logs -f
|
|
|
|
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
|