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.
O método filter
Filtra o WrapperArray
com uma função atribuída sobre objetos Wrapper
(envoledor).
O comportamento deste método é similar ao Array.prototype.filter.
Argumentos:
{function} predicate
Retorna:
{WrapperArray}
Uma nova instância de WrapperArray
contendo instâncias de Wrapper
que torna true
para a função atribuída.
- Exemplo:
import { shallowMount } from '@vue/test-utils'
import Foo from './Foo.vue'
const wrapper = shallowMount(Foo)
const filteredDivArray = wrapper
.findAll('div')
.filter(w => !w.classes('filtered'))