Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into canary
Browse files Browse the repository at this point in the history
# Conflicts:
#	examples/example-app-router-playground/tests/main.spec.ts
  • Loading branch information
amannn committed Oct 16, 2024
2 parents a3f0b1b + fa341f3 commit a9a7391
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/example-app-router-playground/tests/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,14 @@ it('can use `t.has` in a Server Component', async ({page}) => {
await expect(page.getByTestId('HasTitle')).toHaveText('true');
});

it('can render mdx content', async ({page}) => {
await page.goto('/about');
await page.getByRole('heading', {name: 'About'}).waitFor();

await page.goto('/de/about');
await page.getByRole('heading', {name: 'Über uns'}).waitFor();
});

// https://github.com/radix-ui/primitives/issues/3165
it.skip('provides a `Link` that works with Radix Primitives', async ({
page
Expand Down

0 comments on commit a9a7391

Please sign in to comment.