該指令(隔離範圍,transcluded,替換)在<body>
中插入一個掩碼。
var mask = angular.element('<div id="mask"></div>');
$document.find('body').append(mask);
scope.$on('$destroy', function() {
mask.remove();
});
我試圖與範圍的一個簡單的廣播來測試這種情況下:
var $document, scope, element, rootScope;
beforeEach(inject(function($compile, _$document_, $rootScope, $injector) {
rootScope = $injector.get('$rootScope');
scope = $rootScope;
$document = _$document_;
mask = $document.find('#mask');
element = $compile(angular.element('<overlay id="derp"></overlay>'))(scope);
}));
it('should remove mask when casting the $destory event', function (done) {
scope.$broadcast('$destroy');
scope.$digest();
expect($document.find('#mask').length).toBe(0);
});
知道爲什麼這不起作用?
你可以顯示指令和整個規格嗎? –
增加了更多細節。 – mrzmyr
產生相同的結果。 – mrzmyr