9 lines
301 B
Bash
9 lines
301 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Runs the Timmy test suite against the local dev server.
|
||
|
|
# Usage: pnpm test (from repo root)
|
||
|
|
# BASE=https://custom-url.replit.app pnpm test
|
||
|
|
set -euo pipefail
|
||
|
|
BASE="${BASE:-https://${REPLIT_DEV_DOMAIN}}"
|
||
|
|
echo "Running tests against: $BASE"
|
||
|
|
BASE="$BASE" bash timmy_test.sh
|