如何配置Karma以使用requirejs和qunit

时间:2014-04-11 08:23:52

标签: javascript requirejs qunit karma-runner

我试图将业力和需求放在一起。但找到一个大问题找不到任何答案。 我有一个使用requirejs的项目,我使用qunit作为其测试框架。在业力进来之前,他们工作正常。 在关注Karma requirejs instruction之后,我收到了错误,无法找到合适的解决方案。 业力版本为0.12.6

错误是:

Uncaught Error: Mismatched anonymous define () module ....

我如何让他们一起工作?

这是我的文件结构

projectroot
    |
    |----\src
    |    |
    |    |----\demo
    |    |    |
    |    |    |----hello.js
    |    |
    |    |----\test
    |         |
    |         |----hello_test.js
    |         |----test_main.js      
    |       
    |----karma.conf.js    

我的 karma.conf.js

// Karma configuration
// Generated on Fri Apr 11 2014 11:43:46 GMT+0800 

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

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '.',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['qunit', 'requirejs'],
   //plugins:['karma-qunit','karma-launcher-chrome'], 

    // list of files / patterns to load in the browser
    files: [
      'src/test/test-main.js',
      {pattern: 'src/demo/*.js', included: false},
      {pattern: 'src/test/*.js', include: false}
    ],


    // list of files to exclude
    exclude: [

    ],


    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {

    },


    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    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_DEBUGs,


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


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['Chrome'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: false
  });
};

我的 test-main.js

var allTestFiles = [];
var TEST_REGEXP = /(spec|test)\.js$/i;

var pathToModule = function(path) {
  return path.replace(/^\/base\//, '').replace(/\.js$/, '');
};

Object.keys(window.__karma__.files).forEach(function(file) {
  if (TEST_REGEXP.test(file)) {
    // Normalize paths to RequireJS module names.
    allTestFiles.push(pathToModule(file));
  }
});

console.log(allTestFiles);
require.config({
  // Karma serves files under /base, which is the basePath from your config file
  baseUrl: '/base',

  // dynamically load all test files
  deps: allTestFiles,

  // we have to kickoff jasmine, as it is asynchronous
  callback: window.__karma__.start
});

我的 hello_test.js

define(function(){
  it("is a simple test", function(){
    ok(true, "hope it works");
    });
});

谢谢!

添加最终错误报告屏幕: error screen

您可以看到我的hello_test.js已加载。我在requirejs.org上阅读了有关#mismatch的文档。看起来requirejs无法通过传统方式加载模块名称。

2 个答案:

答案 0 :(得分:2)

我的错误

我的文件中有两个错误:

  1. 在karma.conf.js
  2. 中拼错included
  3. 在qunit测试文件中。
  4. 正确的qunit测试用例应该是

    define(function(){
        test("is a simple test", function(){
            ok(true, "hope it works");
        });
    });
    

    it("is a simple test", function() ...

答案 1 :(得分:0)

不确定你的两项改变是否能让它发挥作用,但在花了大约六个小时来解决同样的问题后,我建议:

  • 删除您的专线{pattern: 'src/demo/*.js', included: false},
  • 或将'src/demo/hello.js'添加到您的exclude: [ ]数组。

这是导致我头痛的原因之一。