1

我正在尝试使用 Karma 运行我的单元测试。我有calendar.tests.js一个看起来很像这样的文件:

import { handleSelectDay } from '../components/Calendar/index.vue'
describe('Calendar', () => {
  describe('handleSelectDay', () => {
    const data = {};

    describe('updates data', () => {
      it('should set the selectedDay to a new id', () => {
        handleSelectDay('id');
        expect(data.daySelected).to.equal('id');
      });
    });
  });
});

当我使用 Karma 运行此测试时,我得到以下信息:TypeError: (0 , _index.handleSelectDay) is not a function is not a function

我的 karma.conf.js 看起来像:

module.exports = function (config) {
  config.set({

    frameworks: ['browserify', 'mocha'],
    files: ['static/js/apps/FutureHours/test/calender.tests.js'],
    preprocessors: {
      'static/js/apps/**/test/*.js': ['browserify']
    },
    browsers: ['Chrome'],
    logLevel: 'LOG_DEBUG',

    plugins: [
      'karma-mocha',
      'karma-browserify',
      'karma-chrome-launcher',
      'karma-spec-reporter'
    ],

    browserify: {
      debug: true,
      transform: [['babelify', { presets: ['env'] }], 'vueify']
    }
  })
}

如何让 Karma 与 VueJS 单文件组件配合使用?

4

1 回答 1

0

这样做的问题是您不能从.vue组件中进行命名导出。相反,组件中使用的任何方法都必须通过单元测试中的组件对象进行访问。在组件之外使用的任何函数methods,都应该存在于它们自己的 ES 模块中,以使单元测试更容易。

于 2017-04-10T16:22:52.910 回答