From 94803fbf538f3bfd016ab8266737a9fc77928c3e Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Tue, 29 Apr 2025 19:30:37 -0400 Subject: [PATCH] =?UTF-8?q?chore(module-federation):=20disable=20test=20th?= =?UTF-8?q?at=20is=20causing=20agents=20to=20run=20=E2=80=A6=20(#30936)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …out of memory ## Current Behavior Many pipelines are stuck because this task is causing agents to run out of memory. ## Expected Behavior This test is disabled so that pipelines can complete. ## Related Issue(s) Fixes # --- e2e/react/src/module-federation/ssr.rspack.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/react/src/module-federation/ssr.rspack.test.ts b/e2e/react/src/module-federation/ssr.rspack.test.ts index 484300a3f9..7433dfa5f6 100644 --- a/e2e/react/src/module-federation/ssr.rspack.test.ts +++ b/e2e/react/src/module-federation/ssr.rspack.test.ts @@ -13,7 +13,8 @@ import { import { readPort, runCLI } from './utils'; describe('React Rspack SSR Module Federation', () => { - describe('ssr', () => { + // TODO: @columferry please investigate why this test cauess agents to run out of memory + xdescribe('ssr', () => { beforeEach(() => { newProject({ packages: ['@nx/react'] }); });