2018-03-18 19:31:32 +00:00
|
|
|
import { resolve } from 'path'
|
2018-04-06 11:27:43 +00:00
|
|
|
import { loadFixture, getPort, Nuxt, Builder } from '../utils'
|
2018-03-18 19:31:32 +00:00
|
|
|
|
|
|
|
describe('nuxt', () => {
|
|
|
|
test('Nuxt.js Class', () => {
|
|
|
|
expect(typeof Nuxt).toBe('function')
|
|
|
|
})
|
|
|
|
|
|
|
|
test('Nuxt.js Instance', async () => {
|
2018-08-17 20:25:23 +00:00
|
|
|
const config = await loadFixture('empty')
|
2018-03-18 23:41:14 +00:00
|
|
|
const nuxt = new Nuxt(config)
|
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(typeof nuxt).toBe('object')
|
2018-03-18 23:41:14 +00:00
|
|
|
expect(nuxt.options.dev).toBe(false)
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(typeof nuxt._ready.then).toBe('function')
|
2018-03-18 23:41:14 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
await nuxt.ready()
|
2018-03-18 23:41:14 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(nuxt.initialized).toBe(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('Fail to build when no pages/ directory but is in the parent', () => {
|
|
|
|
const nuxt = new Nuxt({
|
|
|
|
dev: false,
|
2018-03-19 10:06:45 +00:00
|
|
|
rootDir: resolve(__dirname, '..', 'fixtures', 'empty', 'pages')
|
2018-03-18 19:31:32 +00:00
|
|
|
})
|
2018-03-18 23:41:14 +00:00
|
|
|
|
2018-08-06 00:12:44 +00:00
|
|
|
return new Builder(nuxt).build().catch((err) => {
|
2018-08-08 10:54:05 +00:00
|
|
|
const s = String(err)
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(s.includes('No `pages` directory found')).toBe(true)
|
|
|
|
expect(s.includes('Did you mean to run `nuxt` in the parent (`../`) directory?')).toBe(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-04-06 11:27:43 +00:00
|
|
|
test('Build with default page when no pages/ directory', async () => {
|
2018-08-10 16:37:20 +00:00
|
|
|
const nuxt = new Nuxt()
|
2018-04-06 11:27:43 +00:00
|
|
|
new Builder(nuxt).build()
|
|
|
|
const port = await getPort()
|
2018-10-30 20:42:53 +00:00
|
|
|
await nuxt.server.listen(port, 'localhost')
|
2018-03-18 23:41:14 +00:00
|
|
|
|
2018-10-30 20:42:53 +00:00
|
|
|
const { html } = await nuxt.server.renderRoute('/')
|
2018-10-31 09:21:44 +00:00
|
|
|
expect(html.includes('<h2 class="Landscape__Title">')).toBe(true)
|
2018-10-05 12:37:55 +00:00
|
|
|
expect(/Landscape__Page__Explanation/.test(html)).toBe(true)
|
2018-04-06 11:27:43 +00:00
|
|
|
|
|
|
|
await nuxt.close()
|
2018-03-18 19:31:32 +00:00
|
|
|
})
|
2018-08-10 14:48:27 +00:00
|
|
|
|
|
|
|
test('Fail to build when specified plugin isn\'t found', () => {
|
|
|
|
const nuxt = new Nuxt({
|
|
|
|
dev: false,
|
|
|
|
rootDir: resolve(__dirname, '..', 'fixtures', 'missing-plugin')
|
|
|
|
})
|
|
|
|
|
|
|
|
return new Builder(nuxt).build().catch((err) => {
|
|
|
|
const s = String(err)
|
|
|
|
expect(s.includes('Plugin not found')).toBe(true)
|
|
|
|
})
|
|
|
|
})
|
2018-10-25 10:55:05 +00:00
|
|
|
|
|
|
|
test('Warn when styleResource isn\'t found', () => {
|
|
|
|
const nuxt = new Nuxt({
|
|
|
|
dev: false,
|
|
|
|
rootDir: resolve(__dirname, '..', 'fixtures', 'missing-style-resource')
|
|
|
|
})
|
|
|
|
|
|
|
|
return new Builder(nuxt).build().catch((err) => {
|
|
|
|
const s = String(err)
|
|
|
|
expect(s.includes('Style Resource not found')).toBe(true)
|
|
|
|
})
|
|
|
|
})
|
2018-03-18 19:31:32 +00:00
|
|
|
})
|