單元測試角度指令不是很難,但我發現有不同的方法來做到這一點。如何單元測試角度指令
對於這篇文章的目的,讓我們假設下面的指令
angular.module('myApp')
.directive('barFoo', function() {
return {
restrict: 'E',
scope: true,
template: '<p ng-click="toggle()"><span ng-hide="active">Bar Foo</span></p>',
controller: function ($element, $scope) {
this.toggle() {
this.active = !this.active;
}
}
};
});
現在我能想到的兩種方法進行單元測試這個
方法1:
describe('Directive: barFoo', function() {
...
beforeEach(inject(function($rootScope, barFooDirective) {
element = angular.element('<bar-foo></bar-foo>');
scope = $rootScope.$new();
controller = new barFooDirective[0].controller(element, scope);
}));
it('should be visible when toggled', function() {
controller.toggle();
expect(controller.active).toBeTruthy();
});
});
方法2 :
beforeEach(inject(function ($compile, $rootScope) {
element = angular.element('<bar-foo></bar-foo>');
scope = $rootScope.$new();
$compile(element)(scope);
scope.$digest();
}));
it ('should be visible when toggled', function() {
element.click();
expect(element.find('span')).not.toHaveClass('ng-hide');
});
所以,我很好奇哪些方法和哪個方法最強大?
我認爲點擊元素的單元測試就像是測試控制器方法量角器 – Appeiron