Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,10 @@ test("the package public type surface carries no effect/@effect/opentelemetry/@o
} finally {
rmSync(out, { recursive: true, force: true });
}
}, 60_000);
// A real test-body BUDGET, not a slow-cleanup detector: the body shells out
// to a cold `tsc --declaration` emit over the package, then walks a second
// TS program over the output. That is ~5s locally but 45-68s on a contended
// CI runner (~9-14x). The emit is near its floor (scoping it to the index
// closure and in-process emit both measured SLOWER), so the ceiling is what
// gives it headroom — matched to the house budget for slow bodies here.
}, 130_000);
Loading