Nuxt/test/dev/https.test.js

25 lines
582 B
JavaScript
Raw Normal View History

import { loadFixture, getPort, Nuxt } from '../utils'
let nuxt = null
describe('basic https', () => {
beforeAll(async () => {
const options = await loadFixture('https')
nuxt = new Nuxt(options)
await nuxt.ready()
const port = await getPort()
await nuxt.server.listen(port, '0.0.0.0')
})
test('/', async () => {
const { html } = await nuxt.server.renderRoute('/')
2018-11-08 09:41:24 +00:00
expect(html).toContain('<h1>Served over HTTPS!</h1>')
})
// Close server and ask nuxt to stop listening to file changes
afterAll(async () => {
await nuxt.close()
})
})