Skip to content

Commit a17bcc9

Browse files
committed
test: add cases for page router non-ascii paths and cache tags
1 parent 451a20c commit a17bcc9

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

tests/e2e/page-router.test.ts

+16
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,22 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
8080
revalidateApiBasePath: '/api/revalidate-no-await',
8181
expectedH1Content: 'Product not-prerendered-and-not-awaited-revalidation',
8282
},
83+
{
84+
label:
85+
'prerendered page with dynamic path and awaited res.revalidate() - non-ASCII variant',
86+
prerendered: true,
87+
pagePath: '/products/事前レンダリング',
88+
revalidateApiBasePath: '/api/revalidate',
89+
expectedH1Content: 'Product 事前レンダリング',
90+
},
91+
{
92+
label:
93+
'not prerendered page with dynamic path and awaited res.revalidate() - non-ASCII variant',
94+
prerendered: false,
95+
pagePath: '/products/事前レンダリングされていない',
96+
revalidateApiBasePath: '/api/revalidate',
97+
expectedH1Content: 'Product 事前レンダリングされていない',
98+
},
8399
]) {
84100
test(label, async ({ page, pollUntilHeadersMatch, pageRouter }) => {
85101
// in case there is retry or some other test did hit that path before

tests/fixtures/page-router-base-path-i18n/pages/products/[slug].js

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ export const getStaticPaths = () => {
3232
},
3333
locale: 'de',
3434
},
35+
{
36+
params: {
37+
// Japanese prerendered (non-ascii)
38+
slug: '事前レンダリング',
39+
},
40+
},
3541
],
3642
fallback: 'blocking', // false or "blocking"
3743
}

0 commit comments

Comments
 (0)