We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52632f9 + ae5d20d commit 04eb9bdCopy full SHA for 04eb9bd
1 file changed
cypress/component/MapContent.cy.js
@@ -84,8 +84,6 @@ describe('MapContent', () => {
84
Cypress.on('uncaught:exception', (err) => {
85
// returning false here prevents Cypress from
86
// failing the test
87
- if (err.message.includes("this.facets.at is not a function"))
88
- return false
89
if (err.message.includes("this.$refs.sideBar.closeConnectivity is not a function"))
90
return false
91
if (err.message.includes("Cannot read properties of undefined (reading 'left')"))
@@ -104,6 +102,9 @@ describe('MapContent', () => {
104
102
if (err.message.includes("Cannot read properties of null (reading 'id')")) {
105
103
106
}
+ if (err.message.includes("$el.css is not a function")) {
+ return false
107
+ }
108
return true
109
})
110
0 commit comments