diff --git a/src/components/EventCalendar/EventCalendar.test.tsx b/src/components/EventCalendar/EventCalendar.test.tsx index 08530df717..283776592b 100644 --- a/src/components/EventCalendar/EventCalendar.test.tsx +++ b/src/components/EventCalendar/EventCalendar.test.tsx @@ -119,12 +119,6 @@ describe('Calendar', () => { expect(getByText(`${currentMonth} ${currentYear}`)).toBeInTheDocument(); }); - it('should render the correct number of days', () => { - const { getAllByTestId } = render(); - const days = getAllByTestId('day'); - expect(days.length).toBe(42); - }); - it('should highlight the selected date when clicked', () => { const { getByText } = render(); const selectedDate = getByText('15');