在vue-test-utils

时间:2018-05-18 11:12:07

标签: vuejs2 jestjs vue-test-utils

我正在尝试对@mouseover和@mouseleave事件进行单元测试,该事件根据鼠标悬停显示v-card-actions。我在我的vuejs2 webpack应用程序中使用vue-test-utils。以下是我在网上发现的内容:vue-utlis mouse click exemple。提前感谢任何帮助

的人

这是我的代码实际的html模板代码:

  <v-card class="menuCard pa-1 elevation-2 f-basis-0 my-2" 
@mouseover="isBlockAct = true" @mouseleave="isBlockAct = (!checked? 
false:true)">
 <v-checkbox v-model="checked" id="checkbox" class="diCheckbox ma-0" hide- 
details></v-checkbox>
  <v-card-actions class="myUpHere pa-0">
  <v-layout row :class="{'isAct': isBlockAct, 'isNotAct': !isBlockAct}">
 </v-card>

以下是我在spec.js代码中尝试的内容:

  describe("Over event", () => {
     it("shows the icons if the card is over or not", () => {
      const wrapper = mount(MenuRepasRecetteCard, {
        propsData: {}
      });
      wrapper.find(".menuCard").trigger("mouseover");
      expect(wrapper.find(".isAct").text()).contain("remove_red_eye");
    });

3 个答案:

答案 0 :(得分:3)

u需要等待vue处理事件。

describe("Over event", (done) => {
    it("shows the icons if the card is over or not", () => {
        const wrapper = mount(MenuRepasRecetteCard, {
            propsData: {}
        });
        wrapper.find(".menuCard").trigger("mouseover");
        wrapper.vm.$nextTick( () => {
            expect(wrapper.find(".isAct").text()).contain("remove_red_eye");
            done();
        });
    });
});

答案 1 :(得分:2)

await 关键字可用于等待触发器完成:

await wrapper.find(".menuCard").trigger("mouseover");

async 还需要添加到闭包中:

it("shows the icons if the card is over or not", async () => {

答案 2 :(得分:1)

不幸的是,我无法对拉斯的回答发表评论。 文档说不需要nextTick。:

Vue Test Utils同步触发事件。因此,不需要Vue.nextTick。

-来源:https://vue-test-utils.vuejs.org/guides/dom-events.html#important