Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/base-cypress-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
ENDPOINT_DOC_STORE_API: http://localhost:3000
AWS_REGION: test region
OIDC_PROVIDER_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: not provided yet
MONITOR_ACCOUNT_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: ""
MONITOR_ACCOUNT_ID: ""
BUILD_ENV: development
IMAGE_VERSION: "not-required"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/base-vitest-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
ENDPOINT_DOC_STORE_API: http://localhost:3000
AWS_REGION: test region
OIDC_PROVIDER_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: not provided yet
MONITOR_ACCOUNT_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: ""
MONITOR_ACCOUNT_ID: ""
BUILD_ENV: development
IMAGE_VERSION: "ndr-not-required"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
ENDPOINT_DOC_STORE_API: http://localhost:3000
AWS_REGION: test region
OIDC_PROVIDER_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: not provided yet
MONITOR_ACCOUNT_ID: not provided yet
IDENTITY_PROVIDER_POOL_ID: ""
MONITOR_ACCOUNT_ID: ""
BUILD_ENV: development
IMAGE_VERSION: "ndr-${{ vars.BUILD_ENV }}-app:${{ github.sha }}"
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ describe('Home Page', () => {
);
});

it('displays correct page title on home page', { tags: 'regression' }, () => {
it('displays correct page title on start page', { tags: 'regression' }, () => {
cy.get('.app-homepage-content h1').should(
'have.text',
'Access and store digital patient documents',
);
});

it('displays start now button on home page', { tags: 'regression' }, () => {
cy.get('.nhsuk-button').should('have.text', 'Start now');
it('displays start now button on start page', { tags: 'regression' }, () => {
cy.getByTestId('start-btn').should('have.text', 'Start now');
});

it('displays service banner', { tags: 'regression' }, () => {
Expand Down
1 change: 1 addition & 0 deletions app/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_GB" />
<meta property="og:image" content="/open-graph.png" />
<script type="text/javascript" src="/cookie-consent.min.js" data-policy-url="/cookies-policy"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Loading
Loading