10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
# Run Rust tests only
|
|
|
|
set -e
|
|
|
|
echo "🦀 Running Rust tests..."
|
|
cd src-tauri
|
|
cargo test "$@"
|
|
cd ..
|