Skip to content

Commit

Permalink
corrected the start and end time
Browse files Browse the repository at this point in the history
  • Loading branch information
kanhaiya04 committed Nov 20, 2023
1 parent 3ac6940 commit 685dd21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/UserPortal/EventCard/EventCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ describe('Testing Event Card In User portal', () => {
await waitFor(() => expect(queryByText('Location')).toBeInTheDocument());
await waitFor(() => expect(queryByText('Virtual')).toBeInTheDocument());
await waitFor(() => expect(queryByText('Starts')).toBeInTheDocument());
await waitFor(() => expect(queryByText('11:19:12 PM')).toBeInTheDocument());
await waitFor(() => expect(queryByText('5:49:12 PM')).toBeInTheDocument());
await waitFor(() =>
expect(queryByText(`13 April '23`)).toBeInTheDocument()
);
await waitFor(() => expect(queryByText('Ends')).toBeInTheDocument());
await waitFor(() => expect(queryByText('1:19:12 AM')).toBeInTheDocument());
await waitFor(() => expect(queryByText('7:49:12 PM')).toBeInTheDocument());
await waitFor(() =>
expect(queryByText(`15 April '23`)).toBeInTheDocument()
);
Expand Down

0 comments on commit 685dd21

Please sign in to comment.