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.

contains(selector)

Проверка, что каждая обёртка (Wrapper) в WrapperArray содержит селектор.

Используйте любой корректный селектор.

  • Принимает:

    • {string|Component} selector
  • Возвращает: {boolean}

  • Пример:

import { shallowMount } from '@vue/test-utils'
import Foo from './Foo.vue'
import Bar from './Bar.vue'

const wrapper = shallowMount(Foo)
const divArray = wrapper.findAll('div')
expect(divArray.contains('p')).toBe(true)
expect(divArray.contains(Bar)).toBe(true)