mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
25 lines
895 B
TypeScript
25 lines
895 B
TypeScript
|
import fsp from 'node:fs/promises'
|
||
|
import { fileURLToPath } from 'node:url'
|
||
|
import { beforeAll, describe, it, expect } from 'vitest'
|
||
|
import { execaCommand } from 'execa'
|
||
|
|
||
|
const distDir = fileURLToPath(new URL('../dist/templates', import.meta.url))
|
||
|
|
||
|
describe('template', () => {
|
||
|
beforeAll(async () => {
|
||
|
await execaCommand('pnpm build', {
|
||
|
cwd: fileURLToPath(new URL('..', import.meta.url))
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it.each(['error-404.vue', 'error-500.vue', 'error-dev.vue', 'loading.vue', 'welcome.vue'])('correctly outputs style blocks for %s', async (file) => {
|
||
|
const contents = await fsp.readFile(`${distDir}/${file}`, 'utf-8')
|
||
|
|
||
|
const scopedStyle = contents.match(/<style scoped>([\s\S]*)<\/style>/)
|
||
|
const globalStyle = contents.match(/style: \[[\s\S]*children: `([\s\S]*)`/)
|
||
|
|
||
|
expect(scopedStyle?.[1]).toMatchSnapshot()
|
||
|
expect(globalStyle?.[1]).toMatchSnapshot()
|
||
|
})
|
||
|
})
|