AngularJS ReferenceError: module is not defined
AngularJS ReferenceError: module is not defined
这是我在 运行 Karma 时收到的错误消息。它说它发生在 controllerTest.js:13
下面是第 1 到 4 行:
describe('forgotPasswordCtrl', function() {
beforeEach(module('forgotPasswordApp'));
var $controller;
var returnMsg = 'Forgot password response message';
所以我认为这是 beforeEach
部分。不知道为什么会给我这个错误
我认为加载到测试浏览器环境中的文件顺序可能有误。确保包含 module files first
和 then your test scripts
.
这是我在 运行 Karma 时收到的错误消息。它说它发生在 controllerTest.js:13
下面是第 1 到 4 行:
describe('forgotPasswordCtrl', function() {
beforeEach(module('forgotPasswordApp'));
var $controller;
var returnMsg = 'Forgot password response message';
所以我认为这是 beforeEach
部分。不知道为什么会给我这个错误
我认为加载到测试浏览器环境中的文件顺序可能有误。确保包含 module files first
和 then your test scripts
.