mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 05:18:12 -05:00
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;
|
||
|
});
|