使用Jasmine测试角度控制器 - 模块问题

时间:2014-12-16 18:08:15

标签: javascript angularjs dependencies jasmine

我决定学习如何使用Jasmine测试我的角度代码。当我没有使用特定的依赖项时,一切都有效,但如果有一些依赖项,我就会遇到问题。例如,我们有 controllers.js

angular.module('myApp', ['jmdobry.angular-cache'])

.controller('MyCtrl', ['$scope', '$http', function($scope, $http) {
    $scope.myName = "Wojtek";
    /...
}]);

现在我想测试一下:

describe('myApp', function() {
var scope,
controller;

beforeEach(angular.mock.module('myApp'));

describe('MyCtrl', function() {
    beforeEach(inject(function ($rootScope, $controller) {
        scope = $rootScope.$new();
        controller = $controller('MyCtrl', {
            '$scope': scope
        });
    }));
    it('sets proper name', function () {
        expect(scope.myName).toBe("Wojtek");
    });
  });
});

我的问题是 - 如何模仿' jmdobry.angular-cache'依赖

1 个答案:

答案 0 :(得分:1)

由于您在测试中不需要该模块的实际模拟功能,您可以执行以下操作:

describe('myApp', function () {
  var scope,
    controller;

  beforeEach(angular.mock.module('jmdobry.angular-cache', [])); // just create a module that does nothing

  beforeEach(angular.mock.module('myApp'));

  describe('MyCtrl', function () {
    beforeEach(inject(function ($rootScope, $controller) {
      scope = $rootScope.$new();
      controller = $controller('MyCtrl', {
        '$scope': scope
      });
    }));
    it('sets proper name', function () {
      expect(scope.myName).toBe("Wojtek");
    });
  });
});