test: enable browser tests (#4102)

* test: enable browser tests

* chore: refactor
This commit is contained in:
Anthony Fu 2022-04-06 02:38:23 +08:00 committed by GitHub
parent fa9dcfe64c
commit 4ba0604522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 1 deletions

View File

@ -1,10 +1,12 @@
import { fileURLToPath } from 'url'
import { describe, expect, it } from 'vitest'
import { setup, fetch, $fetch, startServer } from '@nuxt/test-utils'
import { expectNoClientErrors } from './utils'
await setup({
rootDir: fileURLToPath(new URL('./fixtures/basic', import.meta.url)),
server: true
server: true,
browser: true
})
describe('server api', () => {
@ -42,6 +44,8 @@ describe('pages', () => {
expect(html).toContain('Composable | bar: auto imported from ~/components/useBar.ts')
// should import components
expect(html).toContain('This is a custom component with a named export.')
expectNoClientErrors('/')
})
it('render 404', async () => {
@ -52,6 +56,8 @@ describe('pages', () => {
expect(html).toContain('[...slug].vue')
expect(html).toContain('404 at not-found')
expectNoClientErrors('/not-found')
})
it('/nested/[foo]/[bar].vue', async () => {
@ -77,6 +83,8 @@ describe('pages', () => {
expect(html).toContain('nested/[foo]/index.vue')
expect(html).toContain('foo: foobar')
expectNoClientErrors('/nested/foobar')
})
it('/nested/[foo]/user-[group].vue', async () => {
@ -88,16 +96,22 @@ describe('pages', () => {
expect(html).toContain('nested/[foo]/user-[group].vue')
expect(html).toContain('foo: foobar')
expect(html).toContain('group: admin')
expectNoClientErrors('/nested/foobar/user-admin')
})
it('/parent', async () => {
const html = await $fetch('/parent')
expect(html).toContain('parent/index')
expectNoClientErrors('/parent')
})
it('/another-parent', async () => {
const html = await $fetch('/another-parent')
expect(html).toContain('another-parent/index')
expectNoClientErrors('/another-parent')
})
})

View File

@ -0,0 +1,40 @@
import { getBrowser, url } from '@nuxt/test-utils'
import { expect } from 'vitest'
export async function renderPage (path = '/') {
const browser = await getBrowser()
const page = await browser.newPage({})
const pageErrors = []
const consoleLogs = []
page.on('console', (message) => {
consoleLogs.push({
type: message.type(),
text: message.text()
})
})
page.on('pageerror', (err) => {
pageErrors.push(err)
})
if (path) {
await page.goto(url(path), { waitUntil: 'networkidle' })
}
return {
page,
pageErrors,
consoleLogs
}
}
export async function expectNoClientErrors (path: string) {
const { pageErrors, consoleLogs } = await renderPage(path)
const consoleLogErrors = consoleLogs.filter(i => i.type === 'error')
const consoleLogWarnings = consoleLogs.filter(i => i.type === 'warn')
expect(pageErrors).toEqual([])
expect(consoleLogErrors).toEqual([])
expect(consoleLogWarnings).toEqual([])
}