From 468dab9c6b4a1404310395c894182830e93756d6 Mon Sep 17 00:00:00 2001 From: Aleksey Semikozov Date: Tue, 10 Mar 2026 05:56:18 -0300 Subject: [PATCH] =?UTF-8?q?Scheduler=20=E2=80=94=20QUnit=20test=20flakines?= =?UTF-8?q?s=20for=20workspace=20group=20header=20cell=20height=20comparis?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../integration.workSpace.tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/devextreme/testing/tests/DevExpress.ui.widgets.scheduler/integration.workSpace.tests.js b/packages/devextreme/testing/tests/DevExpress.ui.widgets.scheduler/integration.workSpace.tests.js index 1aa2f5388011..d6659d89bfc5 100644 --- a/packages/devextreme/testing/tests/DevExpress.ui.widgets.scheduler/integration.workSpace.tests.js +++ b/packages/devextreme/testing/tests/DevExpress.ui.widgets.scheduler/integration.workSpace.tests.js @@ -1135,8 +1135,8 @@ module('Integration: Work space', { ...moduleConfig }, () => { const fifthHeaderCell = headerCells.eq(4); const dateTableCell = scheduler.workSpace.getCells().eq(0); - assert.equal(getInnerHeight(firstHeaderCell), getInnerHeight(fifthHeaderCell), 'Header cells have same height'); - assert.equal(getInnerHeight(fifthHeaderCell), getInnerHeight(dateTableCell), 'Header cell and table cell have same height'); + assert.roughEqual(getInnerHeight(firstHeaderCell), getInnerHeight(fifthHeaderCell), 0.5, 'Header cells have same height'); + assert.roughEqual(getInnerHeight(fifthHeaderCell), getInnerHeight(dateTableCell), 0.5, 'Header cell and table cell have same height'); }); isDesktopEnvironment() && test('SelectedCellData option should be correct when virtual scrolling is enabled', async function(assert) {