我有一個指令,其中控制器被定義爲指令定義的一部分。單元測試使用Karma的角度Js控制器
(function(){
var app = angular.module('app', []);
app.directive('test', function(){
return {
restrict: 'E',
templateUrl: 'test.html',
controller: ['$scope', function ($scope){...*set of functions*......}],
controllerAs:'reportCtrl',
link:function(Attrs){
}
};
});
})();
我需要爲這組函數編寫單元測試。我不熟悉業力測試,並沒有爲這類代碼找到很多資源。我幾乎嘗試了所有可能的方式。有人可以幫我寫這個單元測試
[角JS單元測試控制器]的可能的複製(http://stackoverflow.com/questions/33134566/angular-js-unit-testing-a-controller) – angmerica