From 664953b537e38f4466069620ea4d21cdb38771c8 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sat, 8 Oct 2022 11:31:11 +0200 Subject: [PATCH] tests: update drag test position --- e2e/cypress/component/2-flow/drag.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/cypress/component/2-flow/drag.cy.ts b/e2e/cypress/component/2-flow/drag.cy.ts index a1ac5045..db25500c 100644 --- a/e2e/cypress/component/2-flow/drag.cy.ts +++ b/e2e/cypress/component/2-flow/drag.cy.ts @@ -27,7 +27,7 @@ describe('Check if nodes are draggable', () => { view: win, }) - cy.get(`[data-id="${nodes[0].id}"]`).should('have.css', 'transform', 'matrix(1, 0, 0, 1, 17, 74)') + cy.get(`[data-id="${nodes[0].id}"]`).should('not.have.css', 'transform', 'matrix(1, 0, 0, 1, 0, 0)') }) }) })