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.
1 parent 599e2cd commit 1a0f1b8Copy full SHA for 1a0f1b8
tests/e2e/specs/graph.cy.js
@@ -54,8 +54,10 @@ describe('Graph View', () => {
54
const el1 = $el[0]
55
const matrix1 = el1.transform.baseVal[0].matrix
56
for (const el2 of $list) {
57
- const matrix2 = el2.transform.baseVal[0].matrix
58
- expect(matrix1).to.not.equal(matrix2)
+ if (el1 !== el2) {
+ const matrix2 = el2.transform.baseVal[0].matrix
59
+ expect(matrix1).to.not.equal(matrix2)
60
+ }
61
}
62
})
63
0 commit comments