From 7ab303f26dd13643bcebb37bf5e7cb3815122cf8 Mon Sep 17 00:00:00 2001
From: Caleb Ukle <caleb@nrwl.io>
Date: Thu, 18 May 2023 15:22:17 -0500
Subject: [PATCH] chore(testing): skip nextjs ct/e2e test (#17087)

---
 e2e/cypress/src/cypress.test.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/e2e/cypress/src/cypress.test.ts b/e2e/cypress/src/cypress.test.ts
index da19aa6411e3e..b06f80671c741 100644
--- a/e2e/cypress/src/cypress.test.ts
+++ b/e2e/cypress/src/cypress.test.ts
@@ -13,7 +13,6 @@ import {
   updateFile,
   updateJson,
 } from '@nx/e2e/utils';
-
 const TEN_MINS_MS = 600_000;
 describe('Cypress E2E Test runner', () => {
   const myapp = uniq('myapp');
@@ -177,9 +176,10 @@ describe('env vars', () => {
   it(
     'should allow CT and e2e in the same project',
     async () => {
+      // TODO(caleb): figure out why nextjs isn't release the port only in CI
+      //      await testCtAndE2eInProject('next');
       await testCtAndE2eInProject('angular');
       await testCtAndE2eInProject('react');
-      await testCtAndE2eInProject('next');
     },
     TEN_MINS_MS
   );