21 lines
643 B
YAML
21 lines
643 B
YAML
# Maestro workspace configuration for apps/user-ui E2E tests (Android only).
|
|
# Run from the repo root: bash e2e/run.sh (or: bun run e2e)
|
|
flows:
|
|
- 'flows/**'
|
|
|
|
executionOrder:
|
|
# Stop the suite as soon as a flow fails.
|
|
continueOnFailure: false
|
|
flowsOrder:
|
|
- smoke
|
|
- place-order
|
|
|
|
# Non-secret defaults shared by all flows. ${VAR} in a flow's commands resolves
|
|
# from here. Secrets (TEST_IDENTIFIER / TEST_PASSWORD) belong in the gitignored
|
|
# e2e/.env — see e2e/run.sh — not in this committed file.
|
|
env:
|
|
ADDRESS_NAME: Test User
|
|
ADDRESS_PHONE: '9876543210'
|
|
ADDRESS_LINE1: '1 Test Street'
|
|
|
|
testOutputDir: .maestro-output
|