forked from a11yhood/a11yhood.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example.test
More file actions
21 lines (16 loc) · 726 Bytes
/
Copy pathenv.example.test
File metadata and controls
21 lines (16 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
################################################################################
# a11yhood Frontend - TEST ENVIRONMENT CONFIGURATION EXAMPLE
#
# Copy relevant values to .env.local when running tests locally.
#
# Goal: run frontend tests against local/dev backend without requiring Supabase.
################################################################################
# Use dev auth mode so frontend issues dev tokens (dev-token-<role>)
VITE_DEV_MODE=true
# Default dev user fixture key: admin | moderator | user
VITE_DEV_USER=admin
# Backend API used by app runtime and integration tests
# Typical local backend:
VITE_API_URL=http://localhost:8002
# Optional logging verbosity in browser/tests
VITE_LOG_LEVEL=debug