From 4a8e6316fd2e36769dca2968825457dab2ffb92b Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Fri, 20 Feb 2026 20:22:33 -0600 Subject: [PATCH] ci: Update lint memory usage expectation --- packages/realm-server/tests/realm-endpoints/lint-test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/realm-server/tests/realm-endpoints/lint-test.ts b/packages/realm-server/tests/realm-endpoints/lint-test.ts index f7e42bbefd..04fbca39dd 100644 --- a/packages/realm-server/tests/realm-endpoints/lint-test.ts +++ b/packages/realm-server/tests/realm-endpoints/lint-test.ts @@ -376,10 +376,10 @@ export class MyCard extends CardDef { const finalMemory = process.memoryUsage().heapUsed; const memoryIncrease = finalMemory - initialMemory; - // Memory increase should be reasonable (less than 20MB for lint operations) + // Memory increase should be reasonable (less than 45MB for lint operations) assert.ok( - memoryIncrease < 20 * 1024 * 1024, - `Memory increase should be under 20MB, got ${(memoryIncrease / 1024 / 1024).toFixed(2)}MB`, + memoryIncrease < 45 * 1024 * 1024, + `Memory increase should be under 45MB, got ${(memoryIncrease / 1024 / 1024).toFixed(2)}MB`, ); });