9 lines
394 B
Bash
9 lines
394 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Run T10 full regression tests and optionally update report.
|
||
|
|
# Usage: ./scripts/run-t10-regression.sh [--update-report]
|
||
|
|
set -e
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
echo "Running T10 regression tests..."
|
||
|
|
npx playwright test tests/e2e/bug-regression.spec.ts --grep "T10" --reporter=list
|
||
|
|
echo "Done. See docs/Testing/T10-full-regression-report.md to fill pass/fail from the output above."
|