带Karma的AngularJS测试控制器

前端之家收集整理的这篇文章主要介绍了带Karma的AngularJS测试控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的控制器是:
angular.module('mean').controller('ItemsController',['$scope',function ($scope) {
  $scope.contentTemplate = '/views/items/index.html';
  $scope.subMenu = [
    {name: 'Create Item',location: '/items/create'}
  ];
}]);

我的测试非常简单:

describe('ItemsController',function () {
    var scope;

    beforeEach(module('mean'));

    beforeEach(inject(function($controller,$rootScope) {
      scope = $rootScope.new();
      $controller('ItemsController',{
        $scope: scope
      });

    }));


    it('should have sub menu items loaded properly',function () {
      expect(scope.subMenu.length).toBe(1);
    });

  });

我想要的是测试有一个subMenu项目.相反,我得到的错误是:

PhantomJS 1.9.7 (Mac OS X) ItemsController should have sub menu items
loaded properly Failed TypeError: ‘undefined’ is not a function
(evaluating ‘$rootScope.new()’)

是不是注入了$rootScope?那为什么它未定义?

你想要以美元符号开头的方法
scope = $rootScope.$new();
//                 ^

那应该解决它.

原文链接:https://www.f2er.com/angularjs/141019.html

猜你在找的Angularjs相关文章