import { fileURLToPath } from 'node:url' import { isWindows } from 'std-env' import { describe, it, expect } from 'vitest' import { setup, $fetch } 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('
hello, Helloworld.vue here !
') expect(await page.locator('body').innerHTML()).toContain('
hello, Helloworld.vue here !
') }) it('test Name.ts', async () => { const html = await $fetch('/') const { page } = await renderPage('/') expect(html).toContain('
I am the Name.ts component
') expect(await page.locator('body').innerHTML()).toContain('
I am the Name.ts component
') }) it('test ShowTemplate.ts', async () => { const html = await $fetch('/') const { page } = await renderPage('/') expect(html).toContain('
Hello my name is : John, i am defined by ShowTemplate.vue and my template is retrieved from the API
') expect(await page.locator('body').innerHTML()).toContain('
Hello my name is : John, i am defined by ShowTemplate.vue and my template is retrieved from the API
') }) 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') }) })