0

我正在尝试将 Karma/Mocha/Chai 设置到我的 Backbone 项目中,该项目使用 requirejs 并且运气不佳。

首先,这是我的设置:

- app/
  - js/
- bower_components/
- node_modules/
- test/
  - test-main.js
- karma.conf.js


// relevant bits of karma.conf.js
frameworks: ['mocha', 'requirejs', 'chai'],
files: [
    'test/test-main.js',
    {pattern: 'bower_components/requirejs-text/text.js', included: false},
    {pattern: 'bower_components/jquery/dist/jquery.js', included: false},
    {pattern: 'bower_components/underscore/underscore.js', included: false},
    {pattern: 'bower_components/backbone/backbone.js', included: false},
    {pattern: 'app/js/**/*.js', included: false},
    {pattern: 'test/**/*Spec.js', included: falase}
],
exclude: [ 'app/js/requireConfig.js', 'app/js/main.js' ],
preprocessors: { '**/*.html': [] },


// test-main.js
var allTestFiles = [];
var TEST_REGEXP = /(spec|test)\.js$\i;
var pathToModules = function(path) {
    return path.replace(/^\/base\//, '').replace(/\.js$/, '');
}
Object.keys(window.__karma__.files).forEach(function(file) {
    if (TEST_REGEXP.text(file)) {
        allTestFiles.push(pathToModule(file));
    }
});

require.config({
    baseUrl: '/base/app/js',
    paths: {
        text: '../../bower_components/requirejs-text/text',
        jquery: '../../bower_components/jquery/dist/jquery',
        underscore: '../../bower_components/underscore/underscore',
        backbone: '../../bower_components/backbone/backbone',
        test: '../../test',
    },
    deps: allTestFiles,
    callback: window.__karma__.start;
});

当我运行业力时,我得到:

错误:不匹配的匿名define()模块:function(module) {
--text.js的全部内容--

我尝试将“框架”的顺序更改为frameworks: ['mocha', 'chai', requirejs'],这使得不匹配错误消失了,但随后得到:

TypeError:“未定义”不是对象(评估“window.chai.should”)

这是一个已知问题,建议在chai之前保留requirejs

有没有人有让 requirejs-text 工作的经验?谢谢。

4

1 回答 1

1

很好,很抱歉在 SO 上浪费了一个问题。我从头开始,上面的配置(除了需要“{pattern: 'app/js/**/*.html', included: false}”)运行良好。

为了完整起见,这里是更新的配置:

- app/
  - js/
- bower_components/
- node_modules/
- test/
  - test-main.js
- karma.conf.js


// ---- relevant bits of karma.conf.js ----

// "requirejs" must come before "chai" or Chai will not load properly.
// Sidenote: Karma loads the listed frameworks backwards.
frameworks: ['mocha', 'requirejs', 'chai'],

// Contrary to what a few stackoverflow and github issue responses
// suggested, the order of files do not appear to matter at all.
files: [
  'test/test-main.js',

  // app files
  {pattern: 'app/js/**/*.html', included: false},
  {pattern: 'app/js/**/*.js', included: false},

  // tests
  {pattern: 'test/**/*Spec.js', included: false},

  // libraries
  {pattern: 'bower_components/jquery/dist/jquery.js', included:false, watching: false},
  {pattern: 'bower_components/underscore/underscore.js', included:false, watching: false},
  {pattern: 'bower_components/backbone/backbone.js', included:false, watching: false},
  {pattern: 'bower_components/requirejs-text/text.js', included:false, watching: false},
],

exclude: [ 'app/js/requireConfig.js', 'app/js/main.js' ],

preprocessors: {},


// ---- test-main.js ----
var allTestFiles = [];
for (var file in window.__karma__.files) {
    if (window.__karma__.files.hasOwnProperty(file)) {
        if (/Spec\.js$/.test(file)) {
            allTestFiles.push(file);
        }
    }
}

require.config({
    baseUrl: '/base/app/js',
    paths: {
        jquery: '../../bower_components/jquery/dist/jquery',
        underscore: '../../bower_components/underscore/underscore',
        backbone: '../../bower_components/backbone/backbone',
        text: '../../bower_components/requirejs-text/text',
    },
    deps: allTestFiles,
    callback: window.__karma__.start;
});
于 2015-01-31T18:57:42.757 回答