0

我在我的项目中使用 grunt 配置我的 Karma amd mocha 框架。当我跑步karma start时,我遇到了下面提到的错误。

Uncaught Error: [$injector:modulerr] Failed to instantiate module myModule due to: Error: [$injector:nomod] Module 'myModule' is not available!

我的控制器:

(function () {

    var module = angular.module('myModule',[]);

    module.controller('myCtrl', function($scope, $q, $rootScope, templateValuesSrv) {
        function() {
          var self = this;

          self.firstName = '';
          self.lastName = '';

          self.getFullName = function() {
            return self.firstName + ' ' + self.lastName;
          };

          return self;
        }
    });
})();

我的控制器规格:

describe('myCtrl', function() {
  beforeEach(module('myModule'));

  describe('getFullName()', function() {
    it('should handle names correctly', inject(function($controller) {
      var myController = $controller('myCtrl');

      myController.firstName = 'George';
      myController.lastName = 'Harrison';

      myController.getFullName().should.equal('George Harrison');
    }));
  });
});

我的 Karma.conf.js

// Karma configuration
// Generated on Fri Nov 27 2015 11:48:47 GMT+0530 (India Standard Time)

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: ['mocha', 'chai'],


    // list of files / patterns to load in the browser
    files: [
      'bower_components/angular/angular.js',
      'bower_components/angular-mocks/angular-mocks.js',
      'test/specs/*.js',
      //'test/*.js'
    ],


    // 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_INFO,


    // 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: ['PhantomJS', 'Chrome'],


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

    // Concurrency level
    // how many browser should be started simultanous
    concurrency: Infinity
  })
}

请提出我所缺少的。

4

1 回答 1

1

在规范之前,您应该添加要测试的 js 文件。// 业力配置

   files: [
      'bower_components/angular/angular.js',
      'bower_components/angular-mocks/angular-mocks.js',
      'src/**/*.js',
      'test/specs/*.js',
      //'test/*.js'
    ],

如果您使用 webpackt 或 bower 之类的捆绑程序,那么您可以在每个规范中要求 then

于 2015-11-27T10:19:37.393 回答