From fb10741a02d91e05975f774b2bc11ef24b1b5a52 Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 13 Jan 2025 23:15:57 +0100 Subject: [PATCH] Fix typo in account word --- cypress/e2e/4-check-protected-pages.cy.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cypress/e2e/4-check-protected-pages.cy.js b/cypress/e2e/4-check-protected-pages.cy.js index c3c4b4c6..fca74232 100644 --- a/cypress/e2e/4-check-protected-pages.cy.js +++ b/cypress/e2e/4-check-protected-pages.cy.js @@ -4,7 +4,7 @@ const YOU_ARE_NOT_LOGGEDIN = 'You are not logged in.'; describe('Check Protected Pages', () => { // character actions - it('Go to accouht character creation page', () => { + it('Go to account character creation page', () => { cy.visit({ url: Cypress.env('URL') + '/account/character/create', method: 'GET', @@ -12,7 +12,7 @@ describe('Check Protected Pages', () => { cy.contains(REQUIRED_LOGIN_MESSAGE) }) - it('Go to accouht character deletion page', () => { + it('Go to account character deletion page', () => { cy.visit({ url: Cypress.env('URL') + '/account/character/delete', method: 'GET', @@ -21,7 +21,7 @@ describe('Check Protected Pages', () => { }) // account actions - it('Go to accouht email change page', () => { + it('Go to account email change page', () => { cy.visit({ url: Cypress.env('URL') + '/account/email', method: 'GET', @@ -29,7 +29,7 @@ describe('Check Protected Pages', () => { cy.contains(REQUIRED_LOGIN_MESSAGE) }) - it('Go to accouht password change page', () => { + it('Go to account password change page', () => { cy.visit({ url: Cypress.env('URL') + '/account/password', method: 'GET', @@ -37,7 +37,7 @@ describe('Check Protected Pages', () => { cy.contains(REQUIRED_LOGIN_MESSAGE) }) - it('Go to accouht info change page', () => { + it('Go to account info change page', () => { cy.visit({ url: Cypress.env('URL') + '/account/info', method: 'GET', @@ -45,7 +45,7 @@ describe('Check Protected Pages', () => { cy.contains(REQUIRED_LOGIN_MESSAGE) }) - it('Go to accouht logout change page', () => { + it('Go to account logout change page', () => { cy.visit({ url: Cypress.env('URL') + '/account/logout', method: 'GET',