mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 22:25:12 +00:00
Merge pull request #2325 from clarkdo/mixin_hr
test: remove mixins in live reloading
This commit is contained in:
commit
f4bf1dc012
@ -1,18 +1,26 @@
|
|||||||
import test from 'ava'
|
import test from 'ava'
|
||||||
import { resolve } from 'path'
|
import { resolve } from 'path'
|
||||||
|
import stdMocks from 'std-mocks'
|
||||||
// import rp from 'request-promise-native'
|
// import rp from 'request-promise-native'
|
||||||
import { Nuxt, Builder } from '../index.js'
|
import { Nuxt, Builder, Utils } from '../index.js'
|
||||||
|
import { truncateSync, readFileSync, writeFileSync } from 'fs'
|
||||||
|
|
||||||
const port = 4001
|
const port = 4001
|
||||||
const url = (route) => 'http://localhost:' + port + route
|
const url = (route) => 'http://localhost:' + port + route
|
||||||
|
const rootDir = resolve(__dirname, 'fixtures/basic')
|
||||||
|
const pluginPath = resolve(rootDir, 'plugins', 'watch.js')
|
||||||
|
const pluginContent = readFileSync(pluginPath)
|
||||||
|
|
||||||
let nuxt = null
|
let nuxt = null
|
||||||
|
|
||||||
// Init nuxt.js and create server listening on localhost:4000
|
// Init nuxt.js and create server listening on localhost:4000
|
||||||
test.before('Init Nuxt.js', async t => {
|
test.before('Init Nuxt.js', async t => {
|
||||||
const options = {
|
const options = {
|
||||||
rootDir: resolve(__dirname, 'fixtures/basic'),
|
rootDir,
|
||||||
dev: true
|
dev: true,
|
||||||
|
plugins: [
|
||||||
|
'~/plugins/watch.js'
|
||||||
|
]
|
||||||
}
|
}
|
||||||
nuxt = new Nuxt(options)
|
nuxt = new Nuxt(options)
|
||||||
await new Builder(nuxt).build()
|
await new Builder(nuxt).build()
|
||||||
@ -20,6 +28,29 @@ test.before('Init Nuxt.js', async t => {
|
|||||||
await nuxt.listen(port, 'localhost')
|
await nuxt.listen(port, 'localhost')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('remove mixins in live reloading', async t => {
|
||||||
|
stdMocks.use()
|
||||||
|
await nuxt.renderRoute(url('/'))
|
||||||
|
t.true(stdMocks.flush().stdout.some(v => v === 'I am mixin\n'))
|
||||||
|
|
||||||
|
truncateSync(pluginPath)
|
||||||
|
await new Promise(async (resolve, reject) => {
|
||||||
|
let waitTimes = 0
|
||||||
|
while (!stdMocks.flush().stdout.some(v => ~v.indexOf('Compiled successfully'))) {
|
||||||
|
await Utils.waitFor(100) && waitTimes++
|
||||||
|
if (waitTimes === 20) {
|
||||||
|
reject(Error('Dev server doesn\'t reload after 2000ms'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
resolve()
|
||||||
|
})
|
||||||
|
|
||||||
|
await nuxt.renderRoute(url('/'))
|
||||||
|
t.false(stdMocks.flush().stdout.some(v => v === 'I am mixin\n'))
|
||||||
|
|
||||||
|
stdMocks.restore()
|
||||||
|
})
|
||||||
|
|
||||||
test('/stateless', async t => {
|
test('/stateless', async t => {
|
||||||
const window = await nuxt.renderAndGetWindow(url('/stateless'))
|
const window = await nuxt.renderAndGetWindow(url('/stateless'))
|
||||||
const html = window.document.body.innerHTML
|
const html = window.document.body.innerHTML
|
||||||
@ -37,5 +68,6 @@ test('/stateless', async t => {
|
|||||||
|
|
||||||
// Close server and ask nuxt to stop listening to file changes
|
// Close server and ask nuxt to stop listening to file changes
|
||||||
test.after('Closing server and nuxt.js', async t => {
|
test.after('Closing server and nuxt.js', async t => {
|
||||||
|
writeFileSync(pluginPath, pluginContent)
|
||||||
await nuxt.close()
|
await nuxt.close()
|
||||||
})
|
})
|
||||||
|
12
test/fixtures/basic/plugins/watch.js
vendored
Normal file
12
test/fixtures/basic/plugins/watch.js
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import Vue from 'vue'
|
||||||
|
|
||||||
|
const Plugin = {
|
||||||
|
install(Vue) {
|
||||||
|
Vue.mixin({
|
||||||
|
created() {
|
||||||
|
console.log('I am mixin') // eslint-disable-line no-console
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Vue.use(Plugin)
|
Loading…
Reference in New Issue
Block a user