16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
|
|
#!/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"
|
||
|
|
pnpm test
|
||
|
|
|
||
|
|
echo "=== Running e2e tests ==="
|
||
|
|
pnpm test:e2e
|