Skip to content

Commit fa341f3

Browse files
committed
docs: Add MDX test for example-app-router-playground
1 parent 9c84314 commit fa341f3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

examples/example-app-router-playground/tests/main.spec.ts

+8
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,14 @@ it('can use `t.has` in a Server Component', async ({page}) => {
702702
await expect(page.getByTestId('HasTitle')).toHaveText('true');
703703
});
704704

705+
it('can render mdx content', async ({page}) => {
706+
await page.goto('/about');
707+
await page.getByRole('heading', {name: 'About'}).waitFor();
708+
709+
await page.goto('/de/about');
710+
await page.getByRole('heading', {name: 'Über uns'}).waitFor();
711+
});
712+
705713
describe('server actions', () => {
706714
it('can use `getTranslations` in server actions', async ({page}) => {
707715
await page.goto('/actions');

0 commit comments

Comments
 (0)