-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathssr.spec.ts
53 lines (43 loc) · 1.53 KB
/
ssr.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { test, expect } from '@playwright/test'
import { joinURL, parseURL } from 'ufo'
const baseURL = process.env.BASE_URL || 'https://nuxt.new/'
const url = (path: string) => joinURL(baseURL, path)
const pages = [
'/',
]
test.describe(`pages`, () => {
for (const path of pages) {
test(`renders ${path}`, async ({ page }) => {
const pageErrors: Error[] = []
const consoleLogs: { type: string, text: string }[] = []
const requests: string[] = []
page.on('console', (message) => {
consoleLogs.push({
type: message.type(),
text: message.text(),
})
})
page.on('pageerror', (err) => {
pageErrors.push(err)
})
page.on('request', (request) => {
requests.push(request.url())
})
await page.goto(url(path), { waitUntil: 'networkidle' })
const title = page.locator('title')
expect(await title.textContent()).toContain('nuxt.new')
await expect(page).toHaveScreenshot({ maxDiffPixelRatio: 0.05 })
const consoleLogErrors = consoleLogs.filter(i => i.type === 'error')
const consoleLogWarnings = consoleLogs.filter(i => i.type === 'warning')
expect(pageErrors).toEqual([])
expect(consoleLogErrors).toEqual([])
expect(consoleLogWarnings).toEqual([])
expect(requests.filter(i => i.endsWith('.js')).map(i => parseURL(i.replace(/\.[\w-]+\.js/, '.js')).pathname))
.toEqual([
'/_nuxt/entry.js',
'/_nuxt/error-404.js',
'/_nuxt/error-500.js',
])
})
}
})