如何在量角器E2E测试规范中访问角度模块

时间:2018-02-08 22:28:07

标签: angularjs protractor e2e-testing angular-fullstack

我正在使用angular fullstack yeoman generator并且我正在尝试访问服务以注册控制器的新实例,该控制器在我的量角器e2e规范中提供范围对象。我在尝试:

describe('Testing Controllers', function () {
  var rootScope;
  var scope;

  beforeEach(module('myApp'));

  beforeEach(inject(function ($rootScope) {
    rootScope = $rootScope;
    scope = $rootScope.$new();
  }));

我得到了Error: TypeError: module is not a function。为什么我的规范无法访问角度模块?

0 个答案:

没有答案