From 3c059bc9d66eedecad19b4ec48fc055842042901 Mon Sep 17 00:00:00 2001 From: ijin08 Date: Fri, 14 Dec 2018 14:50:46 +0100 Subject: [PATCH] removed a test that isn't neccessery any more --- public/app/features/dashboard/specs/AddPanelPanel.test.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/public/app/features/dashboard/specs/AddPanelPanel.test.tsx b/public/app/features/dashboard/specs/AddPanelPanel.test.tsx index 4136883880b..82171177edd 100644 --- a/public/app/features/dashboard/specs/AddPanelPanel.test.tsx +++ b/public/app/features/dashboard/specs/AddPanelPanel.test.tsx @@ -32,11 +32,6 @@ describe('AddPanelPanel', () => { wrapper = shallow(); }); - it('should fetch all panels sorted with core plugins first', () => { - expect(wrapper.find('.add-panel__item').get(1).props.title).toBe('singlestat'); - expect(wrapper.find('.add-panel__item').get(4).props.title).toBe('piechart'); - }); - it('should filter', () => { wrapper.find('input').simulate('change', { target: { value: 'p' } });