Nuxt/examples/with-ava/test/index.test.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

import { resolve } from 'path'
2017-10-20 06:41:06 +00:00
import { Nuxt, Builder } from 'nuxt'
import { JSDOM } from 'jsdom'
import test from 'ava'
2016-11-07 01:34:58 +00:00
2016-12-30 11:17:52 +00:00
// We keep the nuxt and server instance
// So we can close them at the end of the test
2016-11-07 01:34:58 +00:00
let nuxt = null
2020-11-30 22:44:04 +00:00
// Init Nuxt and create a server listening on localhost:4000
test.before(async () => {
2018-04-08 12:16:20 +00:00
const config = {
dev: false,
rootDir: resolve(__dirname, '..')
}
nuxt = new Nuxt(config)
2018-04-08 12:16:20 +00:00
await new Builder(nuxt).build()
await nuxt.server.listen(4000, 'localhost')
2018-03-18 19:31:32 +00:00
}, 30000)
2016-11-07 01:34:58 +00:00
2016-12-30 11:17:52 +00:00
// Example of testing only generated html
test('Route / exits and render HTML', async (t) => {
const context = {}
const { html } = await nuxt.server.renderRoute('/', context)
2016-12-30 11:17:52 +00:00
t.true(html.includes('<h1 class="red">Hello world!</h1>'))
2016-11-07 01:34:58 +00:00
})
2016-12-30 11:17:52 +00:00
// Example of testing via dom checking
test('Route / exits and render HTML with CSS applied', async (t) => {
const context = {}
const { html } = await nuxt.server.renderRoute('/', context)
const { window } = new JSDOM(html).window
2016-12-30 11:17:52 +00:00
const element = window.document.querySelector('.red')
t.not(element, null)
t.is(element.textContent, 'Hello world!')
2016-12-30 11:17:52 +00:00
t.is(element.className, 'red')
t.is(window.getComputedStyle(element).color, 'red')
2016-11-07 01:34:58 +00:00
})
// Close server and ask nuxt to stop listening to file changes
2020-11-30 22:44:04 +00:00
test.after('Closing server and nuxt', (t) => {
nuxt.close()
2016-11-07 01:34:58 +00:00
})