Nuxt/test/children.test.js

65 lines
2.0 KiB
JavaScript

import { resolve } from 'path'
import { Nuxt, Builder } from '..'
const port = 4013
// const url = (route) => 'http://localhost:' + port + route
let nuxt = null
describe('children', () => {
// Init nuxt.js and create server listening on localhost:4000
beforeAll(async () => {
const options = {
rootDir: resolve(__dirname, 'fixtures/children'),
dev: false,
build: {
stats: false
}
}
nuxt = new Nuxt(options)
new Builder(nuxt).build()
await nuxt.listen(port, 'localhost')
}, 30000)
test('/parent', async () => {
const { html } = await nuxt.renderRoute('/parent')
expect(html.includes('<h1>I am the parent</h1>')).toBe(true)
})
test('/parent/child', async () => {
const { html } = await nuxt.renderRoute('/parent/child')
expect(html.includes('<h1>I am the parent</h1>')).toBe(true)
expect(html.includes('<h2>I am the child</h2>')).toBe(true)
})
test('/parent should call _id.vue', async () => {
const { html } = await nuxt.renderRoute('/parent')
expect(html.includes('<h1>I am the parent</h1>')).toBe(true)
expect(html.includes('<h2>Id=</h2>')).toBe(true)
})
test('/parent/1', async () => {
const { html } = await nuxt.renderRoute('/parent/1')
expect(html.includes('<h1>I am the parent</h1>')).toBe(true)
expect(html.includes('<h2>Id=1</h2>')).toBe(true)
})
test('/parent/validate-child should display 404', async () => {
const { html } = await nuxt.renderRoute('/parent/validate-child')
expect(html.includes('This page could not be found')).toBe(true)
})
test('/parent/validate-child?key=12345', async () => {
const { html } = await nuxt.renderRoute('/parent/validate-child?key=12345')
expect(html.includes('<h1>I am the parent</h1>')).toBe(true)
expect(html.includes('<h2>Child valid</h2>')).toBe(true)
})
// Close server and ask nuxt to stop listening to file changes
test('Closing server and nuxt.js', async () => {
await nuxt.close()
})
})