mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
20 lines
498 B
JavaScript
20 lines
498 B
JavaScript
import { getPort, loadFixture, Nuxt } from '../utils'
|
|
|
|
let port
|
|
let nuxt = null
|
|
|
|
describe('basic ssr', () => {
|
|
beforeAll(async () => {
|
|
const options = await loadFixture('async-config')
|
|
nuxt = new Nuxt(options)
|
|
port = await getPort()
|
|
await nuxt.server.listen(port, '0.0.0.0')
|
|
})
|
|
|
|
test('/', async () => {
|
|
expect(nuxt.options.head.title).toBe('Async Config!')
|
|
const { html } = await nuxt.server.renderRoute('/')
|
|
expect(html).toContain('<h1>I am ALIVE!</h1>')
|
|
})
|
|
})
|