Skip to content

Commit 38dd8d6

Browse files
WIP. check test for click subscription in events_engine (T1307313)"
This reverts commit d0d18c3.
1 parent 475d523 commit 38dd8d6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/devextreme-angular/tests/src/ui/data-grid.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,7 @@ describe('DxDataGrid slow tests', () => {
607607
const memoryAfter = await (performance as any).measureUserAgentSpecificMemory();
608608
const memoryDiff = Math.round((memoryAfter.bytes - memoryBefore.bytes) / 1024);
609609

610-
expect(memoryDiff <= 0).toBeTruthy();
610+
expect(memoryDiff ).toEqual(0);
611+
// expect(memoryDiff <= 0).toBeTruthy();
611612
});
612613
})

packages/devextreme/testing/tests/DevExpress.ui.events/events.utils.nodesDisposing.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ QUnit.test('should not leave extra handlers in elementDataMap when using subscri
6666

6767
assert.ok(
6868
finalHandleObjectsCount > 0,
69-
`HandleObjects count should return to initial state. Final: ${finalHandleObjectsCount}; ${finalButtonHandleObjectsCount}; ${finalButtonData ? Object.keys(finalButtonData) : '-0'}`
69+
`HandleObjects count should return to initial state. Final: ${finalHandleObjectsCount}; ${finalButtonHandleObjectsCount}; ${finalElementData ? Object.keys(finalElementData) : '-0'}`
7070
);
7171
});

0 commit comments

Comments
 (0)