mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
960984c08e
[release]
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
import consola from 'consola'
|
|
import { Nuxt } from '../utils'
|
|
|
|
const NO_BUILD_MSG = /Use either `nuxt build` or `builder\.build\(\)` or start nuxt in development mode/
|
|
const NO_MODERN_BUILD_MSG = /Use either `nuxt build --modern` or `modern` option to build modern files/
|
|
|
|
describe('renderer', () => {
|
|
afterEach(() => {
|
|
consola.fatal.mockClear()
|
|
})
|
|
|
|
test('detect no-build (Universal)', async () => {
|
|
const nuxt = new Nuxt({
|
|
_start: true,
|
|
mode: 'universal',
|
|
dev: false,
|
|
buildDir: '/path/to/404'
|
|
})
|
|
|
|
await expect(nuxt.ready()).rejects.toThrow(expect.objectContaining({
|
|
message: expect.stringMatching(NO_BUILD_MSG)
|
|
}))
|
|
})
|
|
|
|
test('detect no-build (SPA)', async () => {
|
|
const nuxt = new Nuxt({
|
|
_start: true,
|
|
mode: 'spa',
|
|
dev: false,
|
|
buildDir: '/path/to/404'
|
|
})
|
|
|
|
await expect(nuxt.ready()).rejects.toThrow(expect.objectContaining({
|
|
message: expect.stringMatching(NO_BUILD_MSG)
|
|
}))
|
|
})
|
|
test('detect no-modern-build', async () => {
|
|
const nuxt = new Nuxt({
|
|
_start: true,
|
|
mode: 'universal',
|
|
modern: 'client',
|
|
dev: false,
|
|
buildDir: '/path/to/404'
|
|
})
|
|
|
|
await expect(nuxt.ready()).rejects.toThrow(expect.objectContaining({
|
|
message: expect.stringMatching(NO_MODERN_BUILD_MSG)
|
|
}))
|
|
})
|
|
})
|