mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
fffe741986
Add stdout/stderr to console helpers Remove separate nosubfolders test file in favor of inclusion in basic.generate Add build.stats to silence webpack output Add .always to after hooks: (1) fixes issue with basic.dev test that watch.js is empty when one of the test fails and (2) fixes that sometimes when running multiple tests that failed after eachother the port is still used as the server did not automatically get killed Change all init nuxt before test to serial tests and add tests for DONE and OPEN logs
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
import test from 'ava'
|
|
import { resolve } from 'path'
|
|
import { Nuxt, Builder } from '..'
|
|
import { interceptLog } from './helpers/console'
|
|
|
|
const port = 4013
|
|
// const url = (route) => 'http://localhost:' + port + route
|
|
|
|
let nuxt = null
|
|
|
|
// Init nuxt.js and create server listening on localhost:4000
|
|
test.serial('Init Nuxt.js', async t => {
|
|
const options = {
|
|
rootDir: resolve(__dirname, 'fixtures/children'),
|
|
dev: false,
|
|
build: {
|
|
stats: false
|
|
}
|
|
}
|
|
|
|
const logSpy = await interceptLog(async () => {
|
|
nuxt = new Nuxt(options)
|
|
await new Builder(nuxt).build()
|
|
await nuxt.listen(port, 'localhost')
|
|
})
|
|
|
|
t.true(logSpy.calledWithMatch('DONE'))
|
|
t.true(logSpy.calledWithMatch('OPEN'))
|
|
})
|
|
|
|
test('/parent', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent')
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
})
|
|
|
|
test('/parent/child', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent/child')
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
t.true(html.includes('<h2>I am the child</h2>'))
|
|
})
|
|
|
|
test('/parent should call _id.vue', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent')
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
t.true(html.includes('<h2>Id=</h2>'))
|
|
})
|
|
|
|
test('/parent/1', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent/1')
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
t.true(html.includes('<h2>Id=1</h2>'))
|
|
})
|
|
|
|
test('/parent/validate-child should display 404', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent/validate-child')
|
|
t.true(html.includes('This page could not be found'))
|
|
})
|
|
|
|
test('/parent/validate-child?key=12345', async t => {
|
|
const { html } = await nuxt.renderRoute('/parent/validate-child?key=12345')
|
|
t.true(html.includes('<h1>I am the parent</h1>'))
|
|
t.true(html.includes('<h2>Child valid</h2>'))
|
|
})
|
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
|
test.after.always('Closing server and nuxt.js', async t => {
|
|
await nuxt.close()
|
|
})
|