From b902093da302fcc812ffa4d47c399d26fdbd856a Mon Sep 17 00:00:00 2001 From: kanhaiya Date: Tue, 14 Nov 2023 20:12:17 +0530 Subject: [PATCH 1/3] fixed the event checkIn bug --- src/components/CheckIn/CheckInModal.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/CheckIn/CheckInModal.tsx b/src/components/CheckIn/CheckInModal.tsx index a370ebbb7e..3f15824ecd 100644 --- a/src/components/CheckIn/CheckInModal.tsx +++ b/src/components/CheckIn/CheckInModal.tsx @@ -30,6 +30,7 @@ export const CheckInModal = (props: InterfaceModalProp): JSX.Element => { }); useEffect(() => { + checkInRefetch(); if (checkInLoading) setTableData([]); else setTableData( From a58c5a16d92f2caa8ea2e7fcb6dcda53659a5d3a Mon Sep 17 00:00:00 2001 From: kanhaiya Date: Tue, 14 Nov 2023 20:15:32 +0530 Subject: [PATCH 2/3] fixed the failing test --- src/components/CheckIn/CheckInModal.test.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/CheckIn/CheckInModal.test.tsx b/src/components/CheckIn/CheckInModal.test.tsx index 11d95e5885..80fe9dd918 100644 --- a/src/components/CheckIn/CheckInModal.test.tsx +++ b/src/components/CheckIn/CheckInModal.test.tsx @@ -11,6 +11,9 @@ import { ToastContainer } from 'react-toastify'; import { LocalizationProvider } from '@mui/x-date-pickers'; import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; import { checkInQueryMock } from './mocks'; +import { StaticMockLink } from 'utils/StaticMockLink'; + +const link = new StaticMockLink(checkInQueryMock, true); describe('Testing Check In Attendees Modal', () => { const props = { @@ -21,7 +24,7 @@ describe('Testing Check In Attendees Modal', () => { test('The modal should be rendered, and all the fetched users should be shown properly and user filtering should work', async () => { const { queryByText, queryByLabelText } = render( - + From 94c6b325231361f632bf326b8ba45de35d01c390 Mon Sep 17 00:00:00 2001 From: kanhaiya Date: Tue, 14 Nov 2023 20:31:14 +0530 Subject: [PATCH 3/3] fixed the CheckInWrapper test --- src/components/CheckIn/CheckInWrapper.test.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/CheckIn/CheckInWrapper.test.tsx b/src/components/CheckIn/CheckInWrapper.test.tsx index 4deadc81d6..9cb7fef4ba 100644 --- a/src/components/CheckIn/CheckInWrapper.test.tsx +++ b/src/components/CheckIn/CheckInWrapper.test.tsx @@ -11,6 +11,9 @@ import { ToastContainer } from 'react-toastify'; import { LocalizationProvider } from '@mui/x-date-pickers'; import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; import { checkInQueryMock } from './mocks'; +import { StaticMockLink } from 'utils/StaticMockLink'; + +const link = new StaticMockLink(checkInQueryMock, true); describe('Testing CheckIn Wrapper', () => { const props = { @@ -19,7 +22,7 @@ describe('Testing CheckIn Wrapper', () => { test('The button to open and close the modal should work properly', async () => { const { queryByText } = render( - +