From ebf4ae5e1dba0fa7276718245d72a74d03881fe0 Mon Sep 17 00:00:00 2001 From: Khalah Jones-Golden Date: Tue, 29 Mar 2016 16:10:22 -0400 Subject: [PATCH] [Tests] removing old test --- src/ui/public/chrome/__tests__/kbn_loading_indicator.js | 5 ----- 1 file changed, 5 deletions(-) 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);