mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13:21:46 +00:00
fix: update ReservationModal test for check-in time range fields
Use getAllByText for check-in labels since both "Check-in" and "Check-in until" now match the /Check-in/i pattern.
This commit is contained in:
@@ -134,7 +134,8 @@ describe('ReservationModal', () => {
|
|||||||
it('FE-PLANNER-RESMODAL-008: hotel type shows check-in/check-out time fields', async () => {
|
it('FE-PLANNER-RESMODAL-008: hotel type shows check-in/check-out time fields', async () => {
|
||||||
render(<ReservationModal {...defaultProps} />);
|
render(<ReservationModal {...defaultProps} />);
|
||||||
await userEvent.click(screen.getByRole('button', { name: /Accommodation/i }));
|
await userEvent.click(screen.getByRole('button', { name: /Accommodation/i }));
|
||||||
expect(screen.getByText(/Check-in/i)).toBeInTheDocument();
|
const checkInLabels = screen.getAllByText(/Check-in/i);
|
||||||
|
expect(checkInLabels.length).toBeGreaterThanOrEqual(1);
|
||||||
expect(screen.getByText(/Check-out/i)).toBeInTheDocument();
|
expect(screen.getByText(/Check-out/i)).toBeInTheDocument();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user