Skip to content

Commit

Permalink
Skip tests that require testing user credentials (#3080)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarvarela committed Sep 5, 2024
1 parent 4046eb3 commit 4276f5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion site/gatsby-site/cypress/e2e/integration/rollbar.cy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { maybeIt } from '../../support/utils';

describe('Rollbar', () => {
it('Should log an error to Rollbar', () => {
maybeIt('Should log an error to Rollbar', () => {
cy.intercept('POST', 'https://api.rollbar.com/api/1/item/').as('rollbarAPICall');

cy.visit('/login');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ describe('Subscriptions', () => {
cy.get('button[role=switch][aria-checked=true]').should('exist');
});

it('Incident Updates: Should not display user subscriptions to deleted Incidents', () => {
maybeIt('Incident Updates: Should not display user subscriptions to deleted Incidents', () => {
cy.login(Cypress.env('e2eUsername'), Cypress.env('e2ePassword'));

cy.conditionalIntercept(
Expand Down

0 comments on commit 4276f5d

Please sign in to comment.