mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
10 lines
195 B
Bash
Executable File
10 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
if test -f ./vitest.config.ts; then
|
|
vitest --testTimeout=15000 "$@"
|
|
fi
|
|
if test -f ./vitest.config.node.ts; then
|
|
vitest --testTimeout=15000 -c ./vitest.config.node.ts "$@"
|
|
fi
|