#!/bin/bash # Run all tests (frontend and backend) set -e echo "๐Ÿงช Running all tests..." echo "" echo "๐Ÿ“ฆ Running frontend tests..." bun test echo "" echo "๐Ÿฆ€ Running Rust tests..." cd src-tauri cargo test cd .. echo "" echo "โœ… All tests passed!"