mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import test from 'ava'
|
|
import { resolve } from 'path'
|
|
import { Nuxt, Builder } from '..'
|
|
|
|
test('Nuxt.js Class', t => {
|
|
t.is(typeof Nuxt, 'function')
|
|
})
|
|
|
|
test('Nuxt.js Instance', async t => {
|
|
const nuxt = new Nuxt({
|
|
rootDir: resolve(__dirname, 'fixtures', 'empty')
|
|
})
|
|
t.is(typeof nuxt, 'object')
|
|
t.is(nuxt.options.dev, true)
|
|
t.is(typeof nuxt._ready.then, 'function')
|
|
await nuxt.ready()
|
|
t.is(nuxt.initialized, true)
|
|
})
|
|
|
|
test('Fail to build when no pages/ directory but is in the parent', t => {
|
|
const nuxt = new Nuxt({
|
|
dev: false,
|
|
rootDir: resolve(__dirname, 'fixtures', 'empty', 'pages')
|
|
})
|
|
return new Builder(nuxt).build().catch(err => {
|
|
let s = String(err)
|
|
t.true(s.includes('No `pages` directory found'))
|
|
t.true(
|
|
s.includes('Did you mean to run `nuxt` in the parent (`../`) directory?')
|
|
)
|
|
})
|
|
})
|
|
|
|
test('Fail to build when no pages/ directory', t => {
|
|
const nuxt = new Nuxt({
|
|
dev: false,
|
|
rootDir: resolve(__dirname)
|
|
})
|
|
return new Builder(nuxt).build().catch(err => {
|
|
let s = String(err)
|
|
t.true(s.includes("Couldn't find a `pages` directory"))
|
|
t.true(s.includes('Please create one under the project root'))
|
|
})
|
|
})
|