From 584d964a725739d41badd92135f977304d03fbac Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Wed, 19 Feb 2025 17:48:34 +0530 Subject: [PATCH] test: fix resize column test --- cypress/integration/column.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/column.js b/cypress/integration/column.js index d4ab4ef..c0dc160 100644 --- a/cypress/integration/column.js +++ b/cypress/integration/column.js @@ -49,15 +49,15 @@ describe('Column', function () { cy .get('@resize-handle') .trigger('mousedown') - .trigger('mousemove', { pageX: 710, pageY: 20, which: 1 }) + .trigger('mousemove', { pageX: 700, pageY: 20, which: 1 }) .trigger('mouseup'); cy.getColumnCell(4) .should('have.css', 'width') - .and('match', /^82\d*(\.\d+)?px$/); + .and('match', /^72\d*(\.\d+)?px$/); cy.getCell(4, 1) .should('have.css', 'width') - .and('match', /^82\d*(\.\d+)?px$/); + .and('match', /^72\d*(\.\d+)?px$/); }); it('resize column using double click', function () {