From e99aad34e63f2f3e58447ff5a988dc03496d0a6d Mon Sep 17 00:00:00 2001 From: Gavin Reynolds Date: Mon, 27 Nov 2023 15:31:31 +0000 Subject: [PATCH] fail-fast enabled Signed-off-by: Gavin Reynolds --- cypress/e2e/Incidents/incidents.spec.js | 2 +- cypress/e2e/Query/query.spec.js | 2 +- cypress/e2e/Search/search.spec.js | 2 +- cypress/e2e/Settings/settings.spec.js | 2 +- cypress/e2e/app.spec.js | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cypress/e2e/Incidents/incidents.spec.js b/cypress/e2e/Incidents/incidents.spec.js index 39029b306..eb9b4e55c 100644 --- a/cypress/e2e/Incidents/incidents.spec.js +++ b/cypress/e2e/Incidents/incidents.spec.js @@ -27,7 +27,7 @@ import { selectAlert, } from '../../support/util/common'; -describe('Manage Open Incidents', { failFast: { enabled: false } }, () => { +describe('Manage Open Incidents', { failFast: { enabled: true } }, () => { before(() => { acceptDisclaimer(); const columns = [ diff --git a/cypress/e2e/Query/query.spec.js b/cypress/e2e/Query/query.spec.js index ca3ab36fa..d3a7b8eda 100644 --- a/cypress/e2e/Query/query.spec.js +++ b/cypress/e2e/Query/query.spec.js @@ -19,7 +19,7 @@ import { registerLocale('en-GB', gb); moment.locale('en-GB'); -describe('Query Incidents', { failFast: { enabled: false } }, () => { +describe('Query Incidents', { failFast: { enabled: true } }, () => { before(() => { acceptDisclaimer(); manageIncidentTableColumns('remove', ['latest_note']); diff --git a/cypress/e2e/Search/search.spec.js b/cypress/e2e/Search/search.spec.js index 89d0bd7fc..77f471fd1 100644 --- a/cypress/e2e/Search/search.spec.js +++ b/cypress/e2e/Search/search.spec.js @@ -11,7 +11,7 @@ import { updateFuzzySearch, } from '../../support/util/common'; -describe('Search Incidents', { failFast: { enabled: false } }, () => { +describe('Search Incidents', { failFast: { enabled: true } }, () => { before(() => { acceptDisclaimer(); waitForIncidentTable(); diff --git a/cypress/e2e/Settings/settings.spec.js b/cypress/e2e/Settings/settings.spec.js index 8da6ddf2f..d31c16864 100644 --- a/cypress/e2e/Settings/settings.spec.js +++ b/cypress/e2e/Settings/settings.spec.js @@ -17,7 +17,7 @@ import { checkActionAlertsModalContent, } from '../../support/util/common'; -describe('Manage Settings', { failFast: { enabled: false } }, () => { +describe('Manage Settings', { failFast: { enabled: true } }, () => { const localeCode = 'en-US'; moment.locale(localeCode); diff --git a/cypress/e2e/app.spec.js b/cypress/e2e/app.spec.js index d9108cc9f..656923ea7 100644 --- a/cypress/e2e/app.spec.js +++ b/cypress/e2e/app.spec.js @@ -6,7 +6,7 @@ import { import packageConfig from '../../package.json'; -describe('Integration User Token', { failFast: { enabled: false } }, () => { +describe('Integration User Token', { failFast: { enabled: true } }, () => { before(() => { expect(Cypress.env('PD_USER_TOKEN')).to.be.a('string'); cy.intercept('GET', 'https://api.pagerduty.com/users/me').as('getCurrentUser'); @@ -28,7 +28,7 @@ describe('Integration User Token', { failFast: { enabled: false } }, () => { }); }); -describe('PagerDuty Live', () => { +describe('PagerDuty Live', { failFast: { enabled: true } }, () => { before(() => { acceptDisclaimer(); waitForIncidentTable();