mirror of
https://github.com/owncast/owncast.git
synced 2025-01-13 12:07:35 +03:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
|
export function setup() {
|
||
|
Cypress.on(
|
||
|
'uncaught:exception',
|
||
|
(err) => !err.message.includes('ResizeObserver loop limit exceeded')
|
||
|
);
|
||
|
}
|