mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
60 lines
2.4 KiB
TypeScript
60 lines
2.4 KiB
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { isWindows } from 'std-env'
|
|
import { describe, expect, it } from 'vitest'
|
|
import { $fetch, setup } from '@nuxt/test-utils'
|
|
import { expectNoClientErrors, renderPage } from './utils'
|
|
const isWebpack = process.env.TEST_BUILDER === 'webpack'
|
|
|
|
await setup({
|
|
rootDir: fileURLToPath(new URL('./fixtures/runtime-compiler', import.meta.url)),
|
|
dev: process.env.TEST_ENV === 'dev',
|
|
server: true,
|
|
browser: true,
|
|
setupTimeout: (isWindows ? 240 : 120) * 1000,
|
|
nuxtConfig: {
|
|
builder: isWebpack ? 'webpack' : 'vite'
|
|
}
|
|
})
|
|
|
|
describe('test basic config', () => {
|
|
it('expect render page without any error or logs', async () => {
|
|
await expectNoClientErrors('/')
|
|
})
|
|
|
|
it('test HelloWorld.vue', async () => {
|
|
const html = await $fetch('/')
|
|
const { page } = await renderPage('/')
|
|
|
|
expect(html).toContain('<div id="hello-world">hello, Helloworld.vue here ! </div>')
|
|
expect(await page.locator('body').innerHTML()).toContain('<div id="hello-world">hello, Helloworld.vue here ! </div>')
|
|
})
|
|
|
|
it('test Name.ts', async () => {
|
|
const html = await $fetch('/')
|
|
const { page } = await renderPage('/')
|
|
|
|
expect(html).toContain('<div id="name">I am the Name.ts component</div>')
|
|
expect(await page.locator('body').innerHTML()).toContain('<div id="name">I am the Name.ts component</div>')
|
|
})
|
|
|
|
it('test ShowTemplate.ts', async () => {
|
|
const html = await $fetch('/')
|
|
const { page } = await renderPage('/')
|
|
|
|
expect(html).toContain('<div id="show-template">Hello my name is : John, i am defined by ShowTemplate.vue and my template is retrieved from the API</div>')
|
|
expect(await page.locator('body').innerHTML()).toContain('<div id="show-template">Hello my name is : John, i am defined by ShowTemplate.vue and my template is retrieved from the API</div>')
|
|
})
|
|
|
|
it('test Interactive component.ts', async () => {
|
|
const html = await $fetch('/')
|
|
const { page } = await renderPage('/')
|
|
|
|
expect(html).toContain('I am defined by Interactive in the setup of App.vue. My full component definition is retrieved from the api')
|
|
expect(await page.locator('#interactive').innerHTML()).toContain('I am defined by Interactive in the setup of App.vue. My full component definition is retrieved from the api')
|
|
const button = page.locator('#inc-interactive-count')
|
|
await button.click()
|
|
const count = page.locator('#interactive-count')
|
|
expect(await count.innerHTML()).toBe('1')
|
|
})
|
|
})
|