#!/bin/bash
set -euo pipefail

echo "Running unit tests..."
npm run test:unit

echo "Running integration tests..."
npm run test:integration

echo "All tests passed!"
