ディレクティブをユニットテストするにはどうすればよいですか?
私が持っているのは
angular.module('MyModule').
directive('range', function() {
return {
restrict: 'E',
replace: true,
scope: {
bindLow: '=',
bindHigh: '=',
min: '@',
max: '@'
},
template: '<div><select ng-options="n for n in [min, max] | range" ng-model="bindLow"></select><select ng-options="n for n in [min, max] | range" ng-model="bindHigh"></select></div>'
};
})
私の単体テストでは、非常に簡単なテストから始めたいと思います
describe('Range control', function () {
var elm, scope;
beforeEach(inject(function(_$compile_, _$rootScope) {
elm = angular.element('<range min="1" max="20" bind-low="low" bind-high="high"></range>');
var scope = _$rootScope_;
scope.low = 1;
scope.high = 20;
_$compile_(elm)(scope);
scope.$digest();
}));
it('should render two select elements', function() {
var selects = elm.find('select');
expect(selects.length).toBe(2);
});
});
ただし、ディレクティブがappモジュールに登録されているため、これは機能しません。モジュールを含めたくないので、すべてのconfig
コードrun
が実行されます。それは、ディレクティブを別個のユニットとしてテストするという目的を無効にします。
すべてのディレクティブを別のモジュールに入れて、それだけをロードすることになっていますか?または、これを解決する他の賢い方法はありますか?