Files
redash/client/cypress/support/index.js
2020-08-25 14:24:15 -03:00

14 lines
316 B
JavaScript

/* global Cypress */
import "./commands";
import "./redash-api/index.js";
Cypress.env("dataSourceId", 1);
Cypress.on("uncaught:exception", err => {
// Prevent ResizeObserver error from failing tests
if (err && Cypress._.includes(err.message, "ResizeObserver loop limit exceeded")) {
return false;
}
});