diff --git a/src/components/Reports/ExpectedMonthlyTotalReport/Table/ExpectedMonthlyTotalReportTable.test.tsx b/src/components/Reports/ExpectedMonthlyTotalReport/Table/ExpectedMonthlyTotalReportTable.test.tsx index ffd91b239..f54431717 100644 --- a/src/components/Reports/ExpectedMonthlyTotalReport/Table/ExpectedMonthlyTotalReportTable.test.tsx +++ b/src/components/Reports/ExpectedMonthlyTotalReport/Table/ExpectedMonthlyTotalReportTable.test.tsx @@ -20,16 +20,18 @@ describe('ExpectedMonthlyTotalReportTable', () => { it('renders empty', async () => { const empty: ExpectedDonationRowFragment[] = []; const { queryByRole } = render( - - - , + + + + + , ); expect(queryByRole('button')).not.toBeInTheDocument(); @@ -52,16 +54,18 @@ describe('ExpectedMonthlyTotalReportTable', () => { }); const { queryAllByRole, getAllByTestId, getByText, getByTestId } = render( - - - , + + + + + , ); expect(queryAllByRole('button')[0]).toBeInTheDocument();