Skip to content

Commit 475d523

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,6 @@ 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 < 100).toBeTruthy();
610+
expect(memoryDiff <= 0).toBeTruthy();
611611
});
612612
})

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
@@ -65,7 +65,7 @@ QUnit.test('should not leave extra handlers in elementDataMap when using subscri
6565
: -1;
6666

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

0 commit comments

Comments
 (0)