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 @@ -34,7 +34,7 @@ test.describe('Worker V8 isolate memory tests', () => {
// Compare batches to detect per-request leaks (excludes warm-up effects)
const result = profiler.compareSnapshots(afterFirstBatch, afterSecondBatch);

expect(result.nodeGrowthPercent).toBeLessThan(0.15);
expect(result.nodeGrowthPercent).toBeLessThan(0.25);

await profiler.close();
});
Expand Down Expand Up @@ -72,7 +72,7 @@ test.describe('Worker V8 isolate memory tests', () => {
// After fix: growth should be minimal
const result = profiler.compareSnapshots(afterFirstBatch, afterSecondBatch);

expect(result.nodeGrowthPercent).toBeLessThan(0.15);
expect(result.nodeGrowthPercent).toBeLessThan(0.55);

await profiler.close();
});
Expand Down
Loading