Nuxt/test/basic.fail.generate.test.js

21 lines
458 B
JavaScript
Raw Normal View History

2016-12-21 19:51:43 +00:00
import test from 'ava'
import { resolve } from 'path'
test('Fail with routes() which throw an error', async t => {
2016-12-21 19:51:43 +00:00
const Nuxt = require('../')
const options = {
rootDir: resolve(__dirname, 'fixtures/basic'),
dev: false,
generate: {
2017-06-13 22:09:03 +00:00
async routes () {
throw new Error('Not today!')
2016-12-21 19:51:43 +00:00
}
}
}
const nuxt = new Nuxt(options)
2017-06-13 22:09:03 +00:00
return nuxt.generate()
2016-12-21 19:51:43 +00:00
.catch((e) => {
2017-03-20 16:52:35 +00:00
t.true(e.message === 'Not today!')
2016-12-21 19:51:43 +00:00
})
})