From b472bec9076d791b57e34a6e69a28ac068aa77b1 Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Thu, 31 Oct 2024 13:19:03 +0100 Subject: [PATCH] chore: remove test assertion --- .../proposalVotingContainer.test.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.test.tsx b/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.test.tsx index a40e01ee..8d196588 100644 --- a/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.test.tsx +++ b/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.test.tsx @@ -14,14 +14,6 @@ describe(' component', () => { return ; }; - it('renders the proposal voting title and description', () => { - const title = 'Proposal voting'; - const description = 'Description for the voting terminal'; - render(createTestComponent({ title, description })); - expect(screen.getByRole('heading', { level: 2, name: title })).toBeInTheDocument(); - expect(screen.getByText(description)).toBeInTheDocument(); - }); - it('renders an accordion container when having more than one child', () => { const children = [ ,