mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
99705f77c0
Co-authored-by: pooya parsa <pyapar@gmail.com>
24 lines
636 B
TypeScript
24 lines
636 B
TypeScript
import { fileURLToPath } from 'url'
|
|
import { describe, expect, it } from 'vitest'
|
|
import { setup, $fetch } from '@nuxt/test-utils'
|
|
|
|
describe('fixtures:bridge', async () => {
|
|
await setup({
|
|
rootDir: fileURLToPath(new URL('./fixtures/bridge', import.meta.url)),
|
|
server: true
|
|
})
|
|
|
|
describe('pages', () => {
|
|
it('render hello world', async () => {
|
|
expect(await $fetch('/')).to.contain('Hello Vue 2!')
|
|
})
|
|
})
|
|
|
|
describe('navigate', () => {
|
|
it('should redirect to index with navigateTo', async () => {
|
|
const html = await $fetch('/navigate-to/')
|
|
expect(html).toContain('Hello Vue 2!')
|
|
})
|
|
})
|
|
})
|