我正在使用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
。为什么我的规范无法访问角度模块?