Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading