#!/bin/bash # Run Rust tests only set -e echo "🦀 Running Rust tests..." cd src-tauri cargo test "$@" cd ..