这是我运行Karma时收到的错误消息。它说它发生在controllerTest.js:13
以下是第1到4行:
describe('forgotPasswordCtrl', function() {
beforeEach(module('forgotPasswordApp'));
var $controller;
var returnMsg = 'Forgot password response message';
所以我相信它是beforeEach
部分。不明白为什么它会给我这个错误
答案 0 :(得分:2)
我认为加载到测试浏览器环境中的文件顺序可能有误。请务必加入module files first
和then your test scripts
。