1

私はkarma-mochaを使用しています..私のkarma.confファイルはkarma-jasmineで動作しています...しかし、karma-mochaでは動作していません....私のkarma.confファイル:--

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

    basePath : '../app',

    preprocessors: {
      '**/*.html':'ng-html2js'
    },

    ngHtml2JsPreprocessor: {
      prependPrefix: '/'
    },

    files : [
    'node_modules/jquery/**/*.js',
      'lib/angular/angular.js',
      'lib/angular/angular-*.js',
      '../test/lib/angular-mocks.js',
      '../test/lib/sinon-1.15.0.js',
      '../test/chai/chai.js',
      'js/**/*.js',
      '../test/unit/**/*.js',
      '**/*.html'
    ],

    autoWatch : true,

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

    browsers : ['Chrome'],

    plugins : [
      'karma-chrome-launcher',
      'karma-mocha',
      'karma-ng-html2js-preprocessor',
      'karma-requirejs',
      'karma-chai'
    ],

    junitReporter : {
      outputFile: 'test_out/unit.xml',
      suite: 'unit'
    }

  });
};
4

2 に答える 2