Files
nginx-proxy-manager/test/cypress/support/e2e.js
T
Jamie Curnow 7e9cc32f97 Fix cypress suite
- split out cypress tests for plugins to be isolated
- use updated testca image from proper location
2026-05-27 07:25:24 +10:00

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;
});