Nuxt/test/error.test.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-12-20 18:25:51 +00:00
import test from 'ava'
import { resolve } from 'path'
2017-06-20 11:44:47 +00:00
import { Nuxt, Builder } from '../index.js'
2017-06-14 18:51:14 +00:00
2017-05-21 19:00:01 +00:00
const port = 4005
2016-12-20 18:25:51 +00:00
const url = (route) => 'http://localhost:' + port + route
let nuxt = null
let server = null
// Init nuxt.js and create server listening on localhost:4000
2016-12-20 19:44:42 +00:00
test.before('Init Nuxt.js', async t => {
2016-12-20 18:25:51 +00:00
const options = {
2016-12-20 19:44:42 +00:00
rootDir: resolve(__dirname, 'fixtures/error'),
2017-06-14 18:51:14 +00:00
dev: false,
runBuild: true
2016-12-20 18:25:51 +00:00
}
nuxt = new Nuxt(options)
2017-06-18 17:33:23 +00:00
await new Builder(nuxt).build()
2017-06-20 11:44:47 +00:00
await nuxt.listen(port, 'localhost')
2016-12-20 18:25:51 +00:00
})
test('/ should display an error', async t => {
try {
await nuxt.renderRoute('/')
} catch (e) {
t.true(e.message.includes('not_defined is not defined'))
}
})
test('/404 should display an error too', async t => {
2017-04-13 09:32:29 +00:00
let { error } = await nuxt.renderRoute('/404')
t.true(error.message.includes('This page could not be found.'))
2016-12-20 18:25:51 +00:00
})
test('/ with renderAndGetWindow()', async t => {
2017-05-30 16:18:01 +00:00
const err = await t.throws(nuxt.renderAndGetWindow(url('/')))
t.is(err.response.statusCode, 500)
2016-12-20 18:25:51 +00:00
})
// Close server and ask nuxt to stop listening to file changes
test.after('Closing server and nuxt.js', t => {
server.close()
nuxt.close()
})