这是我在控制器中检查功能是否已定义的测试用例
功能:
$scope.loadData = ()=> {
LoadService.loadListing().then(function (responseData) {
alert("Success");
}
测试用例:
it('should have loadMeetings function', function () {
expect(angular.isFunction(scope.loadData )).toBe(true);
});
错误: TypeError:无法读取未定义的属性'loadListing' 在Scope.MyCtrl。$ scope.loadData