#!/bin/bash set -e REPO_ROOT=$(git rev-parse --show-toplevel) BACKEND_DIR="$REPO_ROOT/veza-backend-api" echo "๐Ÿ“ Backend Unit Tests (Low Power Mode)" cd "$BACKEND_DIR" export GOMAXPROCS=1 echo "โš™๏ธ Constraint: GOMAXPROCS=1" echo "๐Ÿงช Running Unit Tests..." go test ./internal/... -v -short echo "โœ… Unit tests completed."