Skip to content

Commit 2112bec

Browse files
committed
remove cache component tests
1 parent 9996d00 commit 2112bec

File tree

4 files changed

+4
-54
lines changed

4 files changed

+4
-54
lines changed

dev-packages/e2e-tests/test-applications/nextjs-16/app/cached-components-error/[param]/page.tsx

Lines changed: 0 additions & 16 deletions
This file was deleted.

dev-packages/e2e-tests/test-applications/nextjs-16/next.config.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
import { withSentryConfig } from '@sentry/nextjs';
22
import type { NextConfig } from 'next';
33

4-
const isCanaryBuild = process.env.CANARY_BUILD === 'true';
5-
6-
const nextConfig: NextConfig = {
7-
experimental: {
8-
...(isCanaryBuild ? { cacheComponents: true } : {}),
9-
},
10-
};
4+
const nextConfig: NextConfig = {};
115

126
export default withSentryConfig(nextConfig, {
137
silent: true,

dev-packages/e2e-tests/test-applications/nextjs-16/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,16 @@
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build > .tmp_build_stdout 2> .tmp_build_stderr || (cat .tmp_build_stdout && cat .tmp_build_stderr && exit 1)",
8-
"build:canary": "CANARY_BUILD=true next build",
98
"clean": "npx rimraf node_modules pnpm-lock.yaml .tmp_dev_server_logs",
109
"dev:webpack": "next dev --webpack",
1110
"build:webpack": "next build --webpack",
1211
"start": "next start",
1312
"lint": "eslint",
1413
"test:prod": "TEST_ENV=production playwright test",
1514
"test:dev": "TEST_ENV=development playwright test",
16-
"test:prod-canary": "CANARY_BUILD=true TEST_ENV=production playwright test",
17-
"test:dev-canary": "CANARY_BUILD=true playwright test",
1815
"test:build": "pnpm install && pnpm build",
19-
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm build:canary",
20-
"test:assert": "pnpm test:prod && pnpm test:dev",
21-
"test:assert-canary": "pnpm test:prod-canary && pnpm test:dev-canary"
16+
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm build",
17+
"test:assert": "pnpm test:prod && pnpm test:dev"
2218
},
2319
"dependencies": {
2420
"@sentry/nextjs": "latest || *",
@@ -48,7 +44,7 @@
4844
{
4945
"build-command": "pnpm test:build-canary",
5046
"label": "nextjs-16 (canary)",
51-
"assert-command": "test:assert-canary"
47+
"assert-command": "pnpm test:assert"
5248
}
5349
]
5450
}

dev-packages/e2e-tests/test-applications/nextjs-16/tests/cached-components-error.test.ts

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)