单元测试 – 如何在VueJS中测试计算属性?

前端之家收集整理的这篇文章主要介绍了单元测试 – 如何在VueJS中测试计算属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Vue CLI的VueJS.所以我的所有组件都是.vue格式.

在我的一个组件中,我在数据部分有一个名为fields的数组.

//Component.vue
data() {
  return {
     fields : [{"name" : "foo","title" : "Foosteria"},{"name" : "bar","title" : "Barrista"}]
  }
}

我有一个计算属性,它是字段的子集

//Component.vue
computed : {
    subsetOfFields () {
       // Something else in component data determines this list
    }
}

我已经在这样的茉莉花中设置了所有单元测试,它们工作正常.

//Component.spec.js
 import Vue from 'vue'
 import MyComponent from 'Component.vue'
 describe("Component test",function() {
      var myComponentVar = new Vue(MyComponent);
      var vm = myComponentVar.$mount();

      beforeEach(function() {
         vm = myComponentVar.$mount();
      );

      afterEach(function() {
         vm = myComponentVar.$destroy();
      });

      it("First spec tests something",function() {
            ...
       });

 });

对于其他一切,在规范中做一些事情,然后在数据对象上运行断言就可以了.但是,在subsetOfFields上运行断言始终返回一个空数组.为什么这样?我该怎么办才能测试呢?

仅供参考,我甚至尝试将规范嵌套在另一个描述块中,然后添加一个初始化fields数组的beforeEach.那没起效.

但是,初始化通用beforeEach函数中的字段有效.但我不想用其他规范的模拟数据初始化fields数组.

解决方法

我遇到了这个关于测试的链接,你需要看的部分是Vue.nextTick(…)部分

https://alligator.io/vuejs/unit-testing-karma-mocha/

我正在讨论的块如下:

import Vue from 'vue';
// The path is relative to the project root.
import TestMe2 from 'src/components/TestMe2';

describe('TestMe2.vue',() => {
  ...
  it(`should update when dataText is changed.`,done => {
    const Constructor = Vue.extend(TestMe2);

    const comp = new Constructor().$mount();

    comp.dataProp = 'New Text';

    Vue.nextTick(() => {
      expect(comp.$el.textContent)
        .to.equal('New Text');
      // Since we're doing this asynchronously,we need to call done() to tell Mocha that we've finished the test.
      done();
    });
  });
});
原文链接:https://www.f2er.com/js/157851.html

猜你在找的JavaScript相关文章