diff --git a/test/cypress/integration/claim/claimDevelopment.spec.js b/test/cypress/integration/claim/claimDevelopment.spec.js index ed1e7c0a5..d960e2c0a 100755 --- a/test/cypress/integration/claim/claimDevelopment.spec.js +++ b/test/cypress/integration/claim/claimDevelopment.spec.js @@ -1,5 +1,5 @@ /// -describe('ClaimDevelopment', () => { +describe('ClaimDevelopment', { testIsolation: true }, () => { const claimId = 1; const firstLineReason = 'tbody > :nth-child(1) > :nth-child(2)'; const thirdRow = 'tbody > :nth-child(3)'; diff --git a/test/cypress/integration/customer/clientList.spec.js b/test/cypress/integration/customer/clientList.spec.js index 7b1da6d89..2577462cb 100644 --- a/test/cypress/integration/customer/clientList.spec.js +++ b/test/cypress/integration/customer/clientList.spec.js @@ -1,5 +1,5 @@ /// -describe('Client list', () => { +describe('Client list', { testIsolation: true }, () => { beforeEach(() => { cy.login('developer'); cy.visit('/#/customer/list', { diff --git a/test/cypress/integration/entry/entryPreAccount.spec.js b/test/cypress/integration/entry/entryPreAccount.spec.js index 59fa4ee45..5880d04d7 100644 --- a/test/cypress/integration/entry/entryPreAccount.spec.js +++ b/test/cypress/integration/entry/entryPreAccount.spec.js @@ -1,5 +1,5 @@ /// -describe('Entry PreAccount Functionality', () => { +describe('Entry PreAccount Functionality', { testIsolation: true }, () => { beforeEach(() => { cy.login('administrative'); cy.visit('/#/entry/pre-account'); diff --git a/test/cypress/integration/login/logout.spec.js b/test/cypress/integration/login/logout.spec.js index b17e42794..19568c83b 100644 --- a/test/cypress/integration/login/logout.spec.js +++ b/test/cypress/integration/login/logout.spec.js @@ -1,5 +1,5 @@ /// -describe('Logout', () => { +describe('Logout', { testIsolation: true }, () => { beforeEach(() => { cy.login('developer'); cy.visit(`/#/dashboard`); diff --git a/test/cypress/integration/monitor/monitorTicket.spec.js b/test/cypress/integration/monitor/monitorTicket.spec.js index 72c6bf936..adfc21d3f 100644 --- a/test/cypress/integration/monitor/monitorTicket.spec.js +++ b/test/cypress/integration/monitor/monitorTicket.spec.js @@ -1,5 +1,5 @@ /// -describe('Monitor Tickets Table', () => { +describe('Monitor Tickets Table', { testIsolation: true }, () => { beforeEach(() => { cy.viewport(1920, 1080); cy.login('salesPerson'); diff --git a/test/cypress/integration/route/routeAutonomous.spec.js b/test/cypress/integration/route/routeAutonomous.spec.js index b61431bfb..e6176c258 100644 --- a/test/cypress/integration/route/routeAutonomous.spec.js +++ b/test/cypress/integration/route/routeAutonomous.spec.js @@ -1,6 +1,8 @@ -describe('RouteAutonomous', () => { +describe('RouteAutonomous', { testIsolation: true }, () => { const getLinkSelector = (colField, link = true) => - `tr:first-child > [data-col-field="${colField}"] > .no-padding${link ? ' > .link' : ''}`; + `tr:first-child > [data-col-field="${colField}"] > .no-padding${ + link ? ' > .link' : '' + }`; const selectors = { total: '.value > .text-h6', diff --git a/test/cypress/integration/route/vehicle/vehicleDms.spec.js b/test/cypress/integration/route/vehicle/vehicleDms.spec.js index 4d9250e0f..1d9306be1 100644 --- a/test/cypress/integration/route/vehicle/vehicleDms.spec.js +++ b/test/cypress/integration/route/vehicle/vehicleDms.spec.js @@ -1,4 +1,4 @@ -describe('Vehicle DMS', () => { +describe('Vehicle DMS', { testIsolation: true }, () => { const getSelector = (btnPosition) => `tr:last-child > .text-right > .no-wrap > :nth-child(${btnPosition}) > .q-btn > .q-btn__content > .q-icon`; diff --git a/test/cypress/integration/ticket/ticketSale.spec.js b/test/cypress/integration/ticket/ticketSale.spec.js index b87dfab71..7fc843cf1 100644 --- a/test/cypress/integration/ticket/ticketSale.spec.js +++ b/test/cypress/integration/ticket/ticketSale.spec.js @@ -1,7 +1,7 @@ /// const firstRow = 'tbody > :nth-child(1)'; -describe('TicketSale', () => { +describe('TicketSale', { testIsolation: true }, () => { describe('Ticket #23', () => { beforeEach(() => { cy.login('claimManager'); diff --git a/test/cypress/integration/worker/workerManagement.spec.js b/test/cypress/integration/worker/workerManagement.spec.js index ef605f464..c55832687 100644 --- a/test/cypress/integration/worker/workerManagement.spec.js +++ b/test/cypress/integration/worker/workerManagement.spec.js @@ -1,4 +1,4 @@ -describe('WorkerManagement', () => { +describe('WorkerManagement', { testIsolation: true }, () => { const nif = '12091201A'; const searchButton = '.q-scrollarea__content > .q-btn--standard > .q-btn__content'; const url = '/#/worker/management';