mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 01:29:35 +02:00
37 lines
836 B
Bash
Executable File
37 lines
836 B
Bash
Executable File
#!/bin/bash
|
|
|
|
declare -a vitest_args=("$@")
|
|
|
|
if [[ -n "$MOCHA_GREP" ]]; then
|
|
vitest_args+=("--testNamePattern" "$MOCHA_GREP")
|
|
fi
|
|
|
|
if [[ -n "$VITEST_NO_CACHE" ]]; then
|
|
echo "Disabling cache for vitest."
|
|
vitest_args+=("--no-cache")
|
|
fi
|
|
|
|
echo "Running unit tests in directory: $*"
|
|
|
|
npm run test:unit:parallel -- "${vitest_args[@]}"
|
|
vitest_parallel_status=$?
|
|
|
|
npm run test:unit:sequential -- "${vitest_args[@]}"
|
|
vitest_sequential_status=$?
|
|
|
|
if [ "$vitest_sequential_status" -eq 0 ] && [ "$vitest_parallel_status" -eq 0 ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Report status briefly at the end for failures
|
|
|
|
if [ "$vitest_parallel_status" -ne 0 ]; then
|
|
echo "Parallel tests failed with status: $vitest_parallel_status"
|
|
fi
|
|
|
|
if [ "$vitest_sequential_status" -ne 0 ]; then
|
|
echo "Sequential tests failed with status: $vitest_sequential_status"
|
|
fi
|
|
|
|
exit 1
|