Skip to content
8 changes: 6 additions & 2 deletions app/src/pages/startPage/StartPage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ describe('StartPage', () => {

it('renders start page content', () => {
const contentStrings = [
'This service gives you access to Lloyd George digital health records. ' +
'You may have received a note within a patient record, stating that the paper record has been digitised.',
'This service gives you access to digital Lloyd George records. ' +
'You may have received a note within a patient record, stating that the record has been digitised.',
'If you are part of a GP practice, you can use this service to:',
'view a patient record',
'remove a patient record',
'If you are managing records on behalf of NHS England, you can:',
'Not every patient will have a digital record available.',
'You can upload files for patients who do not currently have a Lloyd George record stored in this service.',
'Before you start',
'You’ll be asked for:',
'your NHS smartcard',
Expand All @@ -51,6 +52,9 @@ describe('StartPage', () => {
);
expect(downloadOdsReport).toHaveLength(2);

const uploadPatientRecord = screen.getAllByText('upload a patient record');
expect(uploadPatientRecord).toHaveLength(2);

expect(screen.getByText(/Contact the/i)).toBeInTheDocument();
expect(
screen.getByRole('link', {
Expand Down
11 changes: 8 additions & 3 deletions app/src/pages/startPage/StartPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,28 @@ function StartPage(props: Props) {
<>
<h1>{pageHeader}</h1>
<p>
This service gives you access to Lloyd George digital health records. You may have
received a note within a patient record, stating that the paper record has been
digitised.
This service gives you access to digital Lloyd George records. You may have received
a note within a patient record, stating that the record has been digitised.
</p>
<p>If you are part of a GP practice, you can use this service to:</p>
<ul>
<li>view a patient record</li>
<li>download a patient record</li>
<li>remove a patient record</li>
<li>download a report on the records held within this service</li>
<li>upload a patient record</li>
</ul>
<p>If you are managing records on behalf of NHS England, you can:</p>
<ul>
<li>download a patient record</li>
<li>download a report on the records held within this service</li>
<li>upload a patient record</li>
</ul>
<p>Not every patient will have a digital record available.</p>
<p>
You can upload files for patients who do not currently have a Lloyd George record
stored in this service.
</p>
Comment on lines +35 to +56
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to feature flag this?

<h2>Before you start</h2>
<p>You’ll be asked for:</p>
<ul>
Expand Down
Loading