Skip to content

Commit

Permalink
Update copy on pending appointment list page (#28589)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniemc committed Mar 18, 2024
1 parent 3185490 commit 9b0df41
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function RequestedAppointmentsList({ hasTypeChanged }) {
);
}
const paragraphText =
'Your appointment requests that haven’t been scheduled yet.';
'Appointments that you request will show here until staff review and schedule them.';

return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function RequestedAppointmentsListGroup({ hasTypeChanged }) {
});

const paragraphText =
'Your appointment requests that haven’t been scheduled yet.';
'Appointments that you request will show here until staff review and schedule them.';

return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ describe('VAOS Page: AppointmentsPage', () => {

expect(
screen.getByText(
'Your appointment requests that haven’t been scheduled yet.',
'Appointments that you request will show here until staff review and schedule them.',
),
).to.be.ok;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('VAOS Component: RequestedAppointmentsList with the VAOS service', () =
expect(await screen.findByText('Cheyenne VA Medical Center')).to.be.ok;
expect(screen.queryByText(/You don’t have any appointments/i)).not.to.exist;
expect(screen.baseElement).to.contain.text(
'Your appointment requests that haven’t been scheduled yet.',
'Appointments that you request will show here until staff review and schedule them.',
);
});

Expand Down Expand Up @@ -175,7 +175,7 @@ describe('VAOS Component: RequestedAppointmentsList with the VAOS service', () =
expect(screen.baseElement).to.contain.text('Community care');
expect(screen.queryByText(/You don’t have any appointments/i)).not.to.exist;
expect(screen.baseElement).to.contain.text(
'Your appointment requests that haven’t been scheduled yet.',
'Appointments that you request will show here until staff review and schedule them.',
);
});

Expand Down

0 comments on commit 9b0df41

Please sign in to comment.