diff --git a/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_general_browser_states.cy.js b/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_general_browser_states.cy.js index 11e1b6961..50cd31fa1 100644 --- a/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_general_browser_states.cy.js +++ b/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_general_browser_states.cy.js @@ -3,7 +3,7 @@ import authPayload from '../../../fixtures/requests/auth/GET_TokenRequest_GP_ADM describe('Authentication & Authorisation', () => { const baseUrl = 'http://localhost:3000'; - context('session management is handled correctly', () => { + context('Session management is handled correctly', () => { it('sets session storage on login and clears session storage on logout', () => { cy.login('GP_ADMIN'); diff --git a/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_pcse_path_access.cy.js b/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_pcse_path_access.cy.js index 1e6121b03..0dbc2dc8a 100644 --- a/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_pcse_path_access.cy.js +++ b/app/cypress/e2e/0-ndr-core-tests/auth_routes/auth_pcse_path_access.cy.js @@ -19,7 +19,7 @@ const forbiddenRoutes = [ 'upload/submit', ]; -describe('PCSE user role has access to the expected GP_ADMIM workflow paths', () => { +describe('PCSE user role has access to the expected GP_ADMIN workflow paths', () => { context('PCSE role has access to expected routes', () => { it('PCSE role has access to Download View', () => { if (!smokeTest) { diff --git a/app/cypress/e2e/0-ndr-core-tests/homepage.cy.js b/app/cypress/e2e/0-ndr-core-tests/homepage.cy.js index 129c85c11..71b6651f0 100644 --- a/app/cypress/e2e/0-ndr-core-tests/homepage.cy.js +++ b/app/cypress/e2e/0-ndr-core-tests/homepage.cy.js @@ -1,7 +1,7 @@ -describe('home page', () => { +describe('Home Page Smoketesting', () => { const baseUrl = 'http://localhost:3000/'; - context('logged in', () => { + context('Logged in tests', () => { beforeEach(() => { cy.login('GP_ADMIN'); cy.visit(baseUrl); @@ -24,12 +24,12 @@ describe('home page', () => { }); }); - context('logged out', () => { + context('Logged out tests', () => { beforeEach(() => { cy.visit(baseUrl); }); - it('Test expected URL is correct', () => { + it('test expected URL is correct', () => { cy.url().should('eq', 'http://localhost:3000/'); }); diff --git a/app/cypress/e2e/0-ndr-core-tests/pcse_user_workflows/download_patient_files_workflow.cy.js b/app/cypress/e2e/0-ndr-core-tests/pcse_user_workflows/download_patient_files_workflow.cy.js index 549191c15..acbc4418f 100644 --- a/app/cypress/e2e/0-ndr-core-tests/pcse_user_workflows/download_patient_files_workflow.cy.js +++ b/app/cypress/e2e/0-ndr-core-tests/pcse_user_workflows/download_patient_files_workflow.cy.js @@ -212,7 +212,7 @@ describe('PCSE Workflow: Access and download found files', () => { cy.url().should('eq', baseUrl); }); - context('delete all documents relating to a patient', () => { + context('Delete all documents relating to a patient', () => { beforeEach(() => { cy.intercept('GET', '/SearchPatient*', { statusCode: 200,