Files
2026-03-01 19:23:56 -08:00

9 lines
149 B
Bash

#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
echo "Starting E2E tests..."
cd "$SCRIPT_DIR/tests/e2e"
npx playwright test "$@"