3

我一直在使用 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,实际上没有什么是未定义的。所以我比较迷茫。

4

2 回答 2

2

更改jasmine.spyOn()spyOn().

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

于 2013-08-22T04:46:00.487 回答
1

尝试

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

于 2019-10-10T13:09:51.167 回答