我正在使用 Yeoman 创建一个 Angular 项目,并将模块定义为:
angular.module('angularApp')<br />
.controller('LogOutCtrl', function ($scope) {//do stuff});
通过 Yeoman 的测试脚本如下:
describe('Controller: LogOutCtrl', function () {
// load the controller's module
beforeEach(module('angularApp', ['ui', 'appSettings']));
var LogOutCtrl,
scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller) {
scope = {};
LogOutCtrl = $controller('LogOutCtrl', {
$scope: scope
});
}));
it('should pass', function () {
expect(2+2).toBe(4); //aka some test
});
});
这通过 grunt/karma 作为错误返回:
Error: Argument 'fn' is not a function, got string
我还研究了其他几种编写方法: 如何使用 Jasmine 测试 AngularJS 服务?
任何帮助将不胜感激,因为我是 Angular 和 Jasmine 测试的新手。我相信这可能是 Yeoman 的测试脚本模板的问题。
谢谢!