import { Nuxt } from '..' import { loadFixture, getPort } from './utils' let port // const url = (route) => 'http://localhost:' + port + route let nuxt = null describe('children', () => { beforeAll(async () => { const options = loadFixture('children') nuxt = new Nuxt(options) port = await getPort() await nuxt.listen(port, 'localhost') }) test('/parent', async () => { const { html } = await nuxt.renderRoute('/parent') expect(html.includes('

I am the parent

')).toBe(true) }) test('/parent/child', async () => { const { html } = await nuxt.renderRoute('/parent/child') expect(html.includes('

I am the parent

')).toBe(true) expect(html.includes('

I am the child

')).toBe(true) }) test('/parent should call _id.vue', async () => { const { html } = await nuxt.renderRoute('/parent') expect(html.includes('

I am the parent

')).toBe(true) expect(html.includes('

Id=

')).toBe(true) }) test('/parent/1', async () => { const { html } = await nuxt.renderRoute('/parent/1') expect(html.includes('

I am the parent

')).toBe(true) expect(html.includes('

Id=1

')).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('

I am the parent

')).toBe(true) expect(html.includes('

Child valid

')).toBe(true) }) // Close server and ask nuxt to stop listening to file changes test('Closing server and nuxt.js', async () => { await nuxt.close() }) })