From 62bd2f8f0acbc00bcc453127f4c52145bf847a9e Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Mon, 9 Jun 2025 09:48:38 -0400 Subject: [PATCH] chore(testing): disable flaky e2e test (#31504) ## Current Behavior This test is flaky. ## Expected Behavior This test is disabled and should be investigated to see why it is flaky. ## Related Issue(s) Fixes # --- e2e/cypress/src/cypress-legacy.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/cypress/src/cypress-legacy.test.ts b/e2e/cypress/src/cypress-legacy.test.ts index e34fb5352d..744ea99ee3 100644 --- a/e2e/cypress/src/cypress-legacy.test.ts +++ b/e2e/cypress/src/cypress-legacy.test.ts @@ -16,7 +16,8 @@ describe('Cypress E2E Test runner (legacy)', () => { afterAll(() => cleanupProject()); - it( + // TODO(@leo): Please investigate why this test is flaky + xit( 'should run e2e in parallel', async () => { const ngApp1 = uniq('ng-app1');