freshyo/tests/e2e/.env.example
2026-09-15 23:59:59 +05:30

28 lines
710 B
Text

# Copy this file to `tests/e2e/.env` and fill in real values.
# `tests/e2e/run.sh` loads it. `.env` is gitignored.
# Quote values that contain spaces (they are fine either way with run.sh).
# App under test
APP_ID=in.freshyo.adminui
# Admin login (must exist on the target backend)
STAFF_NAME=
STAFF_PASSWORD=
# Product under test. run.sh appends a timestamp so re-runs don't collide with
# the backend's unique-name check.
PRODUCT_NAME="E2E Test Product"
# Id of the store to pick in the Store dropdown (see the Stores screen / DB)
STORE_ID=1
# Variant 1 (regular SKU)
SKU1_QTY="500 g"
SKU1_PRICE=199
SKU1_MRP=249
# Variant 2 (flash SKU)
SKU2_QTY="1 kg"
SKU2_PRICE=349
SKU2_MRP=399
SKU2_FLASH_PRICE=299