重构Angular Coffee代码以使用Jasmine测试它

时间:2015-09-16 13:04:20

标签: javascript angularjs coffeescript jasmine

有以下代码:

  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测试它,因为我不知道如何测试回调。请告诉我如何重构此代码以进行测试。

0 个答案:

没有答案