diff --git a/src/ui/public/chrome/__tests__/kbn_loading_indicator.js b/src/ui/public/chrome/__tests__/kbn_loading_indicator.js index 2ea104dfb8fa..aad685d19d15 100644 --- a/src/ui/public/chrome/__tests__/kbn_loading_indicator.js +++ b/src/ui/public/chrome/__tests__/kbn_loading_indicator.js @@ -29,11 +29,6 @@ describe('kbnLoadingIndicator', function () { const $el = compile(); expect($el.find('.spinner')).to.have.length(1); }); - // Doesn't work... - xit('applies the ng-hide class when there are no connections', function () { - const $el = compile(false); - expect($el.find('.spinner.ng-hide')).to.have.length(1); - }); it('applies removes ng-hide class when there are connections', function () { const $el = compile(true); expect($el.find('.spinner.ng-hide')).to.have.length(0);