断言将一个类添加到元素

时间:2018-05-25 19:53:03

标签: typescript vue.js vuejs2 vue-component

我坚持为Vue.js组件编写一个单元测试,声明特定的CSS类被添加到模板中。

这是我的模板:

<template>
  <div id="item-list" class="item-list">
    <table id="item-list-lg" class="table table-hover nomargin hidden-xs hidden-sm hidden-md">
      <thead>
        <tr>
          <th>Name</th>
          <th>Included modules</th>
        </tr>
      </thead>
      <tbody>
        <tr v-bind:id="'list-lg-item-' + item.id"
            v-for="item in items"
            v-bind:key="item.id"
            v-bind:class="itemClass(item)">
          <td class="list-item-name">{{item.name}}</td>
          <td class="list-included-parts">
            <span v-for="part in item.parts" :key="part.id">{{part.name}}, </span>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
</template>

这是Component类(Typescript):

import { Component, Prop, Vue } from 'vue-property-decorator';
import { Item, Items } from '@/models/Item';

@Component
export default class ItemList extends Vue {
    @Prop({required: false}) private items: Item[] = Items;

    public itemClass(item: Item): any {
        return {
            'list-item-details': true,
            'list-global-item': item.isGlobalItem(),
        };
    }
}

一切都相当简单,我可以看到代码是正确的:在运行时,组件中突出显示了相应的项目。然而,单元测试失败并显示消息

  

错误:[vue-test-utils]:find没有返回tr#list -lg-item-id.1,无法调用empty Wrapper上的classes()

这是我的测试(打字稿再次):

describe('ItemList.vue', () => {
  const wrapper = shallowMount(ItemList, {
    propsData: { items: Items },
  });

  it('highlights global items in the list', () => {
    Items
      .filter((i) => i.isGlobalItem())
      .map((i) =>
        // E.g. list-item-id.1
        expect(wrapper.find(`tr#list-lg-item-${i.id}`).classes())
          .to.contain('list-global-item'));
  });
});

我已经尝试find()仅使用id而不是具有该ID的tr,并且看到了相同的效果。此外,如果我修改测试以从包装器输出HTML,我会看到输出中存在正确设置了id的tr元素。

<div data-v-63e8ee02="" id="item-list" class="item-list">
  <table data-v-63e8ee02="" id="item-list-lg" class="table table-hover nomargin hidden-xs hidden-sm hidden-md">
    <thead data-v-63e8ee02="">
      <tr data-v-63e8ee02="">
        <th data-v-63e8ee02="">Name</th>
        <th data-v-63e8ee02="">Included parts</th>
      </tr>
    </thead>
    <tbody data-v-63e8ee02="">
      <tr data-v-63e8ee02="" id="list-item-id.1" class="list-item-details list-global-item">
        <td data-v-63e8ee02="" class="list-item-name">Foo</td>
        <td data-v-63e8ee02="" class="list-included-parts">
          <span data-v-63e8ee02="">Bar, </span>
          <span data-v-63e8ee02="">Baz, </span>
          <span data-v-63e8ee02="">Qux, </span>
          <span data-v-63e8ee02="">Quux, </span>
        </td>
      </tr>
    </tbody>
  </table>
</div>

我错过了什么?这是否与动态设置id属性有关?

1 个答案:

答案 0 :(得分:1)

原来这是因为id标签的生成值包含句点,需要在选择器字符串中进行转义,例如list-item-id\.1