We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
e2e
1 parent f19b547 commit fb542feCopy full SHA for fb542fe
cypress-tests/cypress/support/e2e.js
@@ -19,3 +19,11 @@ import "./commands";
19
20
// Alternatively you can use CommonJS syntax:
21
// require('./commands')
22
+
23
+Cypress.on("uncaught:exception", (err) => {
24
+ // returning false here prevents Cypress from failing the test
25
+ if (err.message.includes("Failed to fetch dynamically imported module")) {
26
+ return false;
27
+ }
28
+ return true;
29
+});
0 commit comments