有以下代码:
geocoder.geocode { location: location }, (results, status) ->
$scope.searched = true
if status is google.maps.GeocoderStatus.OK
$scope.address = results[0].formatted_address
$scope.$digest()
这段代码运行良好,但我不明白我如何用Jasmine测试它,因为我不知道如何测试回调。请告诉我如何重构此代码以进行测试。