Skip to content

Commit 5ef117c

Browse files
authored
Revert "Exclude partial fallback for deploy mode" (#91172)
Reverts #91163 Flag is re-landed for test teams
1 parent 394668e commit 5ef117c

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

test/deploy-tests-manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@
9898
"rules": {
9999
"include": ["test/e2e/**/*.test.{t,j}s{,x}"],
100100
"exclude": [
101-
"test/e2e/app-dir/partial-fallback-shell-upgrade/partial-fallback-shell-upgrade.test.ts",
102101
"test/e2e/cancel-request/stream-cancel.test.ts",
103102
"test/e2e/new-link-behavior/material-ui.test.ts",
104103
"test/e2e/react-dnd-compile/react-dnd-compile.test.ts",

test/e2e/app-dir/partial-fallback-shell-upgrade/partial-fallback-shell-upgrade.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
import { nextTestSetup } from 'e2e-utils'
22
import { retry } from 'next-test-utils'
33

4+
const isAdapterTest = Boolean(process.env.NEXT_ENABLE_ADAPTER)
5+
46
describe('partial-fallback-shell-upgrade', () => {
57
const { next, isNextDev } = nextTestSetup({
68
files: __dirname,
9+
// The latest changes to support this behavior on deployed infra are available in the adapter,
10+
// and are not being backported to the CLI
11+
skipDeployment: !isAdapterTest,
712
})
813

914
if (isNextDev) {

0 commit comments

Comments
 (0)