chore: Remove unused eslint-rules & lint files

This commit is contained in:
Braks
2022-04-11 11:30:10 +02:00
parent 103fc71857
commit f011ea61b1
5 changed files with 11 additions and 19 deletions
@@ -39,9 +39,12 @@ describe('Render VueFlow', () => {
cy.get('.vue-flow__node').each((node) => expect(elements.some((el) => el.label === node.text())).to.be.true))
it('renders nodes at correct position', () =>
cy.get('.vue-flow__node').each((node) => {
expect(
elements.filter(isNode).some((el) => el.position.x === node.position().left && el.position.y === node.position().top),
).to.be.true
}))
cy
.get('.vue-flow__node')
.each(
(node) =>
expect(
elements.filter(isNode).some((el) => el.position.x === node.position().left && el.position.y === node.position().top),
).to.be.true,
))
})