forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4487abd
commit 4b935b4
Showing
5 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { NextResponse } from 'next/server' | ||
|
||
export async function GET() { | ||
return NextResponse.json({ url: 'https://www.example.com' }) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function RootLayout({ children }) { | ||
return ( | ||
<html> | ||
<head /> | ||
<body>{children}</body> | ||
</html> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use client' | ||
|
||
export default function Home() { | ||
return <h1 id="page-title">Page that would break</h1> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* @type {import('next').NextConfig} | ||
*/ | ||
const nextConfig = { | ||
experimental: { appDir: true }, | ||
} | ||
|
||
module.exports = nextConfig |
51 changes: 51 additions & 0 deletions
51
test/e2e/app-dir/route-page-manifest-bug/route-page-manifest-bug.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { createNextDescribe } from 'e2e-utils' | ||
import { check } from 'next-test-utils' | ||
|
||
createNextDescribe( | ||
'route-page-manifest-bug', | ||
{ | ||
files: __dirname, | ||
}, | ||
({ next }) => { | ||
// Recommended for tests that check HTML. Cheerio is a HTML parser that has a jQuery like API. | ||
it('should work when requesting route handler after page', async () => { | ||
const browser = await next.browser('/') | ||
expect(await browser.elementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.eval('window.location.href = "/abc"') | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
await browser.refresh() | ||
await check( | ||
() => browser.eval('document.body.textContent'), | ||
'{"url":"https://www.example.com"}' | ||
) | ||
|
||
await browser.back() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.refresh() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
await browser.refresh() | ||
expect(await browser.waitForElementByCss('#page-title').text()).toBe( | ||
'Page that would break' | ||
) | ||
}) | ||
} | ||
) |