| 123456789101112131415161718192021222324252627282930313233343536 |
- #!/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
|