Skip to content

Commit

Permalink
Prevent test failures from intentionally-thrown errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ambirdsall committed Aug 31, 2022
1 parent a967f15 commit 354afd4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions airbyte-webapp-e2e-tests/cypress/integration/base.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ describe("Error handling view", () => {
},
});

cy.on("uncaught:exception", () => false);

cy.visit("/");

cy.get("div")
Expand All @@ -21,6 +23,8 @@ describe("Error handling view", () => {
body: "Failed to fetch",
});

cy.on("uncaught:exception", () => false);

cy.visit("/");

cy.get("div")
Expand Down

0 comments on commit 354afd4

Please sign in to comment.