Skip to content

Commit 24f1a95

Browse files
committed
Next.js Test
1 parent d4809a9 commit 24f1a95

File tree

1 file changed

+1
-1
lines changed
  • dev-packages/e2e-tests/test-applications/nextjs-14/app/request-instrumentation

1 file changed

+1
-1
lines changed

dev-packages/e2e-tests/test-applications/nextjs-14/app/request-instrumentation/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import http from 'http';
33
export const dynamic = 'force-dynamic';
44

55
export default async function Page() {
6-
await fetch('http://example.com/');
6+
await fetch('http://example.com/', { cache: 'no-cache' });
77
await new Promise<void>(resolve => {
88
http.get('http://example.com/', () => {
99
resolve();

0 commit comments

Comments
 (0)