Skip to content

Commit

Permalink
fail-fast enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Reynolds <[email protected]>
  • Loading branch information
gsreynolds committed Nov 27, 2023
1 parent 5b1a6e4 commit e99aad3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/Incidents/incidents.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/Query/query.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/Search/search.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/Settings/settings.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/app.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -28,7 +28,7 @@ describe('Integration User Token', { failFast: { enabled: false } }, () => {
});
});

describe('PagerDuty Live', () => {
describe('PagerDuty Live', { failFast: { enabled: true } }, () => {
before(() => {
acceptDisclaimer();
waitForIncidentTable();
Expand Down

0 comments on commit e99aad3

Please sign in to comment.