10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
require('cypress-plugin-retries');
|
||
|
|
||
|
import './commands';
|
||
|
|
||
|
Cypress.on('uncaught:exception', (/*err, runnable*/) => {
|
||
|
// returning false here prevents Cypress from
|
||
|
// failing the test
|
||
|
return false;
|
||
|
});
|