8 lines
103 B
Bash
Executable File
8 lines
103 B
Bash
Executable File
#!/bin/bash
|
|
# Run frontend tests only
|
|
|
|
set -e
|
|
|
|
echo "📦 Running frontend tests..."
|
|
bun run test "$@"
|