摩卡 - 柴卡玛“套房未定义”

时间:2013-09-23 15:35:18

标签: javascript mocha karma-runner

我对jscript tdd很新,遇到了问题,希望有人能告诉我我在做什么。 在浏览器中运行测试(通过HTML文件)一切正常。通过节点和业力运行它我得到了以下异常

我想在node.js主机的业力中使用Mocha和Chai。 我是通过npm install [...] --save-dev mocha karma-mocha

安装的

我有一个像这样的测试库

suite('first suite', function () {
    test('SuccessTest', function () {
        expect(1).to.equal(1);
    });

    test('FailTest', function () {
        expect(1).to.equal(2);
    });
});

在节点i中使用karma init来创建配置文件,我将框架设置为

frameworks: ['mocha','chai'],

现在当我运行业力时,它出现了这个错误enter image description here

“套房未定义”

我认为将mocha和chai声明为框架应该有效吗?

我还在节点中安装了karma-mocha和karma-chai插件。

我错了什么,我该怎么做?

整个业力配置文件

// Karma configuration
// Generated on Mon Sep 23 2013 17:24:19 GMT+0200 (Mitteleuropäische Sommerzeit)

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

    // base path, that will be used to resolve files and exclude
    basePath: '',


    // frameworks to use
    frameworks: ['mocha','chai'],


    // list of files / patterns to load in the browser
    files: [
      'tests.js'
    ],


    // list of files to exclude
    exclude: [

    ],


    // test results reporter to use
    // possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
    reporters: ['progress'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: true,


    // Start these browsers, currently available:
    // - Chrome
    // - ChromeCanary
    // - Firefox
    // - Opera
    // - Safari (only Mac)
    // - PhantomJS
    // - IE (only Windows)
    browsers: ['Chrome'],


    // If browser does not capture in given timeout [ms], kill it
    captureTimeout: 60000,


    // Continuous Integration mode
    // if true, it capture browsers, run tests and exit
    singleRun: false
  });
};

我还尝试将mocha.js和chai.js添加到文件加载列表中,但这没有帮助

files: [
  'mocha.js',
  'chai.js',
  'tests.js'

],

当我将测试更改为茉莉花时,它可以正常工作。

1 个答案:

答案 0 :(得分:4)

这是因为没有针对Karma的“chai”框架/插件,但我认为拥有一个是一个好主意。

你需要在一些包含的文件中执行此操作,以便使用“tdd”mocha样式(“bdd”是默认样式):

// in config-mocha.js
window.mocha.setup({ui: 'tdd'});

您需要手动加载“chai”:

module.exports = function(config) {
  config.set({
    files: [
      'path/to/chai.js',
      'config-mocha.js',
      // .. your source and test files
    ]
  });
};