0

角度拡張を使用しているコントローラーがあります。angular extend をテストするにはどうすればよいですか?

angular.module('conditionmonitor').controller('mapController', ['$scope', '$http', 'UIConfig', function ($scope, $http, UIConfig) {
    angular.extend($scope, {
        center: {
            lat: UIConfig.LATITUTE,
            lng: UIConfig.LONGITUDE,
            zoom: UIConfig.ZOOMLEVEL
        },
        markers: $scope.markers,
        layers: $scope.layers,
        defaults: {
            scrollWheelZoom: true
        }
    });
4

1 に答える 1