7e9cc32f97
- split out cypress tests for plugins to be isolated - use updated testca image from proper location
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
import "./commands.mjs";
|
|
|
|
import { register as registerCypressGrep } from "@cypress/grep";
|
|
|
|
registerCypressGrep();
|
|
|
|
Cypress.on("uncaught:exception", (/*err, runnable*/) => {
|
|
// returning false here prevents Cypress from
|
|
// failing the test
|
|
return false;
|
|
});
|