diff --git a/test/e2e/app-dir/parallel-routes-and-interception-nested-dynamic-routes/parallel-routes-and-interception-nested-dynamic-routes.test.ts b/test/e2e/app-dir/parallel-routes-and-interception-nested-dynamic-routes/parallel-routes-and-interception-nested-dynamic-routes.test.ts index 851b2467fbcae5..46cadba463d0d1 100644 --- a/test/e2e/app-dir/parallel-routes-and-interception-nested-dynamic-routes/parallel-routes-and-interception-nested-dynamic-routes.test.ts +++ b/test/e2e/app-dir/parallel-routes-and-interception-nested-dynamic-routes/parallel-routes-and-interception-nested-dynamic-routes.test.ts @@ -3,6 +3,9 @@ import { nextTestSetup } from 'e2e-utils' describe('parallel-routes-and-interception-nested-dynamic-routes', () => { const { next } = nextTestSetup({ files: __dirname, + // TODO: re-enable when resolved related thread + // https://vercel.slack.com/archives/C07UCHRBWGK/p1759165345308879 + skipDeployment: true, }) it('should intercept the route for nested dynamic routes', async () => { diff --git a/test/e2e/app-dir/segment-cache/staleness/segment-cache-stale-time.test.ts b/test/e2e/app-dir/segment-cache/staleness/segment-cache-stale-time.test.ts index f300aa1fcba180..18a68171826b0e 100644 --- a/test/e2e/app-dir/segment-cache/staleness/segment-cache-stale-time.test.ts +++ b/test/e2e/app-dir/segment-cache/staleness/segment-cache-stale-time.test.ts @@ -3,10 +3,10 @@ import type * as Playwright from 'playwright' import { createRouterAct } from '../router-act' describe('segment cache (staleness)', () => { - const { next, isNextDev } = nextTestSetup({ + const { next, isNextDev, isNextDeploy } = nextTestSetup({ files: __dirname, }) - if (isNextDev) { + if (isNextDev || isNextDeploy) { test('disabled in development / deployment', () => {}) return }