mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
26 lines
600 B
JavaScript
26 lines
600 B
JavaScript
|
import { getPort, loadFixture, Nuxt } from '../utils'
|
||
|
|
||
|
let port
|
||
|
const url = route => 'http://localhost:' + port + route
|
||
|
|
||
|
let nuxt = null
|
||
|
|
||
|
describe('with-config', () => {
|
||
|
beforeAll(async () => {
|
||
|
const config = await loadFixture('basic')
|
||
|
nuxt = new Nuxt(config)
|
||
|
port = await getPort()
|
||
|
await nuxt.listen(port, 'localhost')
|
||
|
})
|
||
|
|
||
|
test('/', async () => {
|
||
|
const window = await nuxt.renderAndGetWindow(url('/'))
|
||
|
expect(window.__test_plugin).toBe(true)
|
||
|
})
|
||
|
|
||
|
// Close server and ask nuxt to stop listening to file changes
|
||
|
afterAll(async () => {
|
||
|
await nuxt.close()
|
||
|
})
|
||
|
})
|