diff --git a/src/components/ui/__tests__/CardSummary.spec.js b/src/components/ui/__tests__/CardSummary.spec.js index 89c2a4482..2f7f90882 100644 --- a/src/components/ui/__tests__/CardSummary.spec.js +++ b/src/components/ui/__tests__/CardSummary.spec.js @@ -51,11 +51,6 @@ describe('CardSummary', () => { expect(vm.store.filter).toEqual('cardFilter'); }); - it('should compute entity correctly from store data', () => { - vm.store.data = [{ id: 1, name: 'Entity 1' }]; - expect(vm.entity).toEqual({ id: 1, name: 'Entity 1' }); - }); - it('should respond to prop changes and refetch data', async () => { const newUrl = 'CardSummary/35'; const newKey = 'cardSummaryKey/35';