20 lines
260 B
Bash
Executable File
20 lines
260 B
Bash
Executable File
#!/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!"
|