From d14cc8f8284397106e1d1b8b4eea034064f3f865 Mon Sep 17 00:00:00 2001 From: jsy1218 <91580504+jsy1218@users.noreply.github.com> Date: Fri, 21 Feb 2025 11:36:35 -0700 Subject: [PATCH] fix: double e2e-test max old memory again to 16gb --- bin/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/app.ts b/bin/app.ts index 3d340f95e..aa3463448 100644 --- a/bin/app.ts +++ b/bin/app.ts @@ -353,7 +353,7 @@ export class RoutingAPIPipeline extends Stack { `echo "UNICORN_SECRET=${unicornSecret}" >> .env`, 'npm install', 'npm run build', - 'set NODE_OPTIONS=--max-old-space-size=8192 && npm run test:e2e', + 'set NODE_OPTIONS=--max-old-space-size=16384 && npm run test:e2e', ], })