2026-02-23 12:59:55 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
|
|
|
|
|
|
echo "=== Running Rust tests ==="
|
|
|
|
|
cargo test --manifest-path "$PROJECT_ROOT/Cargo.toml"
|
|
|
|
|
|
|
|
|
|
echo "=== Running frontend unit tests ==="
|
|
|
|
|
cd "$PROJECT_ROOT/frontend"
|
2026-03-14 18:09:58 +00:00
|
|
|
npm test
|
2026-02-23 12:59:55 +00:00
|
|
|
|
|
|
|
|
echo "=== Running e2e tests ==="
|
2026-03-14 18:09:58 +00:00
|
|
|
npm run test:e2e
|