TypeError:在使用带有Karma的spyOn时,'undefined'不是函数

时间:2013-08-15 16:23:39

标签: angularjs jasmine karma-runner

我一直在使用Yeoman来设置项目,并且正在尝试构建一个应用特征切换的角度模块项目。我在单元级别上挂了Jasmine测试,这是我的一个测试:

var scope, Rules;
var elm;
// load the controller's module
beforeEach(function() {
  module('featureToggle.directives', function($provide) {
    $provide.decorator('Rules', function($delegate) {
      $delegate.resolveByName = jasmine.createSpy();

      return $delegate;
    });
  });

  inject(function(_Rules_) {
    Rules = _Rules_;
  });
});

beforeEach(inject(function($rootScope, $compile) {
  scope = $rootScope.$new();
  elm = angular.element(
    '<h1 feature-toggle feature-name="hello">' +
    'Hello World' +
    '</h1>');

  scope = $rootScope;
  $compile(elm)(scope);
  scope.$digest();
}));

it('should render the content when the feature is enabled', function() {
  jasmine.spyOn(Rules, 'resolveByName').andReturn(false);

  var contents = elm.find('h1');
  expect(contents.eq(0)).toHaveClass('hidden');
});

我遇到了一个奇怪的失败。

TypeError: 'undefined' is not a function (evaluating 'jasmine.spyOn(Rules, 'resolveByName')')

karma.conf很香草。

frameworks = ['jasmine'];

// list of files / patterns to load in the browser
files = [
   JASMINE,
   JASMINE_ADAPTER,
   'app/components/angular/angular.js',
   'app/components/angular-mocks/angular-mocks.js',
   'src/*.js',
   'src/**/*.js',
   'test/mock/**/*.js',
   'test/spec/**/*.js'
];

我大体上使用的是PhantomJS,但Chrome中存在同样的问题(同一错误的方言不同)。

使用$ log,实际上没有任何未定义的内容。所以我很失落。

2 个答案:

答案 0 :(得分:2)

jasmine.spyOn()改为spyOn()

顺便说一下,不知道为什么你要两次监视同样的方法。

答案 1 :(得分:1)

尝试

  spyOn(Rules, 'resolveByName').and.returnValue(false);