vue3-yuanma/packages/runtime-dom/__tests__/directives/vShow.spec.ts
Evan You c07751fd36 refactor: adjust createApp related API signatures
BREAKING CHANGE: `createApp` API has been adjusted.

  - `createApp()` now accepts the root component, and optionally a props
  object to pass to the root component.
  - `app.mount()` now accepts a single argument (the root container)
  - `app.unmount()` no longer requires arguments.

  New behavior looks like the following:

  ``` js
  const app = createApp(RootComponent)
  app.mount('#app')
  app.unmount()
  ```
2020-01-27 16:00:17 -05:00

128 lines
2.8 KiB
TypeScript

import {
withDirectives,
defineComponent,
h,
nextTick,
VNode
} from '@vue/runtime-core'
import { render, vShow } from '@vue/runtime-dom'
const withVShow = (node: VNode, exp: any) =>
withDirectives(node, [[vShow, exp]])
let root: any
beforeEach(() => {
root = document.createElement('div')
})
describe('runtime-dom: v-show directive', () => {
test('should check show value is truthy', async () => {
const component = defineComponent({
data() {
return { value: true }
},
render() {
return [withVShow(h('div'), this.value)]
}
})
render(h(component), root)
const $div = root.querySelector('div')
expect($div.style.display).toEqual('')
})
test('should check show value is falsy', async () => {
const component = defineComponent({
data() {
return { value: false }
},
render() {
return [withVShow(h('div'), this.value)]
}
})
render(h(component), root)
const $div = root.querySelector('div')
expect($div.style.display).toEqual('none')
})
it('should update show value changed', async () => {
const component = defineComponent({
data() {
return { value: true }
},
render() {
return [withVShow(h('div'), this.value)]
}
})
render(h(component), root)
const $div = root.querySelector('div')
const data = root._vnode.component.data
expect($div.style.display).toEqual('')
data.value = false
await nextTick()
expect($div.style.display).toEqual('none')
data.value = {}
await nextTick()
expect($div.style.display).toEqual('')
data.value = 0
await nextTick()
expect($div.style.display).toEqual('none')
data.value = []
await nextTick()
expect($div.style.display).toEqual('')
data.value = null
await nextTick()
expect($div.style.display).toEqual('none')
data.value = '0'
await nextTick()
expect($div.style.display).toEqual('')
data.value = undefined
await nextTick()
expect($div.style.display).toEqual('none')
data.value = 1
await nextTick()
expect($div.style.display).toEqual('')
})
test('should respect display value in style attribute', async () => {
const component = defineComponent({
data() {
return { value: true }
},
render() {
return [
withVShow(h('div', { style: { display: 'block' } }), this.value)
]
}
})
render(h(component), root)
const $div = root.querySelector('div')
const data = root._vnode.component.data
expect($div.style.display).toEqual('block')
data.value = false
await nextTick()
expect($div.style.display).toEqual('none')
data.value = true
await nextTick()
expect($div.style.display).toEqual('block')
})
})