4 lines
102 B
Bash
4 lines
102 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -euo pipefail
|
||
|
|
npx vitest run --config vitest.config.ts --reporter=dot 2>&1 | tail -30
|