2020-04-01 06:13:59 +08:00
|
|
|
import { createApp } from '@vue/runtime-dom'
|
|
|
|
|
|
|
|
describe('vCloak', () => {
|
|
|
|
test('should be removed after compile', () => {
|
|
|
|
const root = document.createElement('div')
|
|
|
|
root.setAttribute('v-cloak', '')
|
2020-04-02 09:39:37 +08:00
|
|
|
createApp({
|
|
|
|
render() {}
|
|
|
|
}).mount(root)
|
2020-04-01 06:13:59 +08:00
|
|
|
expect(root.hasAttribute('v-cloak')).toBe(false)
|
|
|
|
})
|
|
|
|
})
|