b7f52be4c9
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
21 lines
462 B
TypeScript
21 lines
462 B
TypeScript
import 'cypress-plugin-steps';
|
|
|
|
/*
|
|
* This is a workaround for the ResizeObserver loop error that occurs in Cypress.
|
|
* See https://github.com/cypress-io/cypress/issues/20341
|
|
* See https://github.com/cypress-io/cypress/issues/29277
|
|
*/
|
|
Cypress.on('uncaught:exception', (err) => {
|
|
if (
|
|
err.message.includes(
|
|
'ResizeObserver loop completed with undelivered notifications'
|
|
)
|
|
) {
|
|
return false;
|
|
}
|
|
});
|
|
|
|
beforeEach(() => {
|
|
cy.visit('/');
|
|
});
|