2026-02-11 21:19:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
|
WEB_DIR="$REPO_ROOT/apps/web"
|
|
|
|
|
|
2026-04-02 17:42:03 +00:00
|
|
|
echo "Frontend Unit Tests (Vitest)"
|
2026-02-11 21:19:34 +00:00
|
|
|
|
|
|
|
|
cd "$WEB_DIR"
|
|
|
|
|
|
|
|
|
|
if [ ! -d "node_modules" ]; then
|
2026-04-02 17:42:03 +00:00
|
|
|
echo "Installing dependencies..."
|
2026-02-11 21:19:34 +00:00
|
|
|
npm ci
|
|
|
|
|
fi
|
|
|
|
|
|
2026-04-02 17:42:03 +00:00
|
|
|
echo "Running unit tests with coverage..."
|
|
|
|
|
npm run test -- --run --coverage
|
2026-02-11 21:19:34 +00:00
|
|
|
|
2026-04-02 17:42:03 +00:00
|
|
|
echo "Unit tests passed."
|