13

我有一个专注于输入的指令。我想测试这个指令。唯一的问题是我找不到如何测试输入是否集中

这是我的简单模拟组件

 <template>
  <div v-directive>
    <input/>
  </div>
</template>

这是我的指令:

import Vue from 'vue'

export const focusInput = () => {
  return {
    inserted(el: any) {
      el.getElementsByTagName('input')[0].focus()
    }
  }
}

export default Vue.directive('focus-input', focusInput())

这是我的测试:

import Vue from 'vue'
import { mount , createLocalVue} from '@vue/test-utils'

import FocusInputMock from './mockComponents/FocusInputMock.vue'
import {focusInput} from '@/directives/focusInput';

const localVue = createLocalVue()

localVue.directive('directive',  focusInput())


test('update content after changing state', () => {
  const wrapper = mount(FocusInputMock, {
    localVue
  })
  Vue.nextTick(function () {
    expect(wrapper.find('input')) // I have to expect for this input to be focused
  });
})

有人有什么想法吗?我一直在阅读 Jest 和 Vue utils 文档,但没有成功。

4

1 回答 1

29

在安装你的模拟组件时,通过{ attachToDocument: true }

试试这个:

let input = wrapper.find('input').element
expect(input).toBe(document.activeElement);
于 2018-10-29T09:04:51.767 回答