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