mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
14 lines
316 B
JavaScript
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;
|
|
}
|
|
});
|