mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
/* global Cypress */
|
|
|
|
import "@cypress/code-coverage/support";
|
|
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;
|
|
}
|
|
});
|