You’re browsing the documentation for Vue Test Utils for Vue v2.x and earlier.
To read docs for Vue Test Utils for Vue 3, click here.
isVisible
Assert every Wrapper
in WrapperArray
is visible.
Returns false
if at least one ancestor element has display: none
, visibility: hidden
, opacity :0
style, is located inside collapsed <details>
tag or has hidden
attribute.
This can be used to assert that a component is hidden by v-show
.
Returns:
{boolean}
Example:
import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'
const wrapper = mount(Foo)
expect(wrapper.isVisible()).toBe(true)
expect(wrapper.findAll('.is-not-visible').isVisible()).toBe(false)
expect(wrapper.findAll('.is-visible').isVisible()).toBe(true)