mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
ef7a42649d
nuxt-start and nuxt/legacy are also coming!
22 lines
457 B
JavaScript
22 lines
457 B
JavaScript
import { loadFixture, getPort, Nuxt } from '../utils'
|
|
|
|
let port
|
|
|
|
let nuxt = null
|
|
// let buildSpies = null
|
|
|
|
describe('deprecate', () => {
|
|
beforeAll(async () => {
|
|
const config = loadFixture('deprecate')
|
|
|
|
nuxt = new Nuxt(config)
|
|
port = await getPort()
|
|
await nuxt.listen(port, 'localhost')
|
|
})
|
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
|
test('Closing server and nuxt.js', async () => {
|
|
await nuxt.close()
|
|
})
|
|
})
|