diff --git a/analysis/verify-ts-packages.sh b/analysis/verify-ts-packages.sh index ac32a2f..be815c8 100755 --- a/analysis/verify-ts-packages.sh +++ b/analysis/verify-ts-packages.sh @@ -470,7 +470,7 @@ run_runtime_checks() { if [[ -n "$has_test_script" ]]; then progress "[$idx/$total] Testing $pkg_name..." local test_output - if test_output=$(cd "$pkg_dir" && timeout "${BUILD_TIMEOUT}s" bun run test 2>&1); then + if test_output=$(cd "$pkg_dir" && CI=true timeout "${BUILD_TIMEOUT}s" bun run test 2>&1); then ((test_pass++)) else local exit_code=$?