diff --git a/e2e/testcafe-devextreme/tests/scheduler/common/layout/customization/cellSizesCss.ts b/e2e/testcafe-devextreme/tests/scheduler/common/layout/customization/cellSizesCss.ts index b9bbedf6b64e..3dd124482087 100644 --- a/e2e/testcafe-devextreme/tests/scheduler/common/layout/customization/cellSizesCss.ts +++ b/e2e/testcafe-devextreme/tests/scheduler/common/layout/customization/cellSizesCss.ts @@ -95,7 +95,7 @@ const HORIZONTAL_VIEW_CROSS_SCROLLING_CASES = { HORIZONTAL_VIEW_CROSS_SCROLLING_CASES, ].forEach(({ views, expect, crossScrollingEnabled }) => { views.forEach((view) => { - test.skip( + test( `Cells should have correct sizes and css classes (view:${view}, crossScrolling:${crossScrollingEnabled})`, async (t) => { const scheduler = new Scheduler(SELECTOR); diff --git a/e2e/testcafe-devextreme/tests/scheduler/common/virtualScrolling/appointments.ts b/e2e/testcafe-devextreme/tests/scheduler/common/virtualScrolling/appointments.ts index e9e25947bfbe..55e5b91b2019 100644 --- a/e2e/testcafe-devextreme/tests/scheduler/common/virtualScrolling/appointments.ts +++ b/e2e/testcafe-devextreme/tests/scheduler/common/virtualScrolling/appointments.ts @@ -9,16 +9,17 @@ import { scrollToDate } from '../../helpers/utils'; fixture.disablePageReloads`Scheduler: Virtual Scrolling` .page(url(__dirname, '../../../container.html')); -test.skip('Appointment should not repaint after scrolling if present on viewport', async (t) => { +test('Appointment should not repaint after scrolling if present on viewport', async (t) => { const scheduler = new Scheduler('#container'); const { element } = scheduler.getAppointment('', 0); await setStyleAttribute(element, 'background-color: red;'); - await t.expect(await getStyleAttribute(element)).eql('transform: translate(525px, 200px); width: 49px; height: 100px; background-color: red;'); + const initialStyle = await getStyleAttribute(element); await scrollToDate(new Date(2020, 8, 17, 4)); + await t.wait(300); - await t.expect(await getStyleAttribute(element)).eql('transform: translate(525px, 200px); width: 49px; height: 100px; background-color: red;'); + await t.expect(await getStyleAttribute(element)).eql(initialStyle); }).before(async () => { await createWidget('dxScheduler', { height: 600, @@ -26,8 +27,6 @@ test.skip('Appointment should not repaint after scrolling if present on viewport currentDate: new Date(2020, 8, 7), scrolling: { mode: 'virtual', - orientation: 'both', - outlineCount: 0, }, currentView: 'week', views: [{