mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
423 B
12 lines
423 B
2 years ago
|
describe('dynamic routes', () => {
|
||
|
test('render correct content', async () => {
|
||
|
await goto('/dynamic-routes/foo')
|
||
|
expect(await page.textContent('h1')).toMatch('Foo')
|
||
|
expect(await page.textContent('pre.params')).toMatch('"id": "foo"')
|
||
|
|
||
|
await goto('/dynamic-routes/bar')
|
||
|
expect(await page.textContent('h1')).toMatch('Bar')
|
||
|
expect(await page.textContent('pre.params')).toMatch('"id": "bar"')
|
||
|
})
|
||
|
})
|