diff --git a/e2e/testcafe-devextreme/tests/cardView/columnChooser/functional.ts b/e2e/testcafe-devextreme/tests/cardView/columnChooser/functional.ts index 08425775c674..6daade06393f 100644 --- a/e2e/testcafe-devextreme/tests/cardView/columnChooser/functional.ts +++ b/e2e/testcafe-devextreme/tests/cardView/columnChooser/functional.ts @@ -56,7 +56,7 @@ function testsFactory(testModel: { assertFirstColumnHidden: (t: TestController, cardView: CardView) => Promise; config: any; // TODO: add typing }) { - test.meta({ unstable: true })(`column chooser in ${testModel.name} mode should work after multiple hide/show actions`, async (t) => { + test(`column chooser in ${testModel.name} mode should work after multiple hide/show actions`, async (t) => { const cardView = new CardView('#container'); await cardView.apiShowColumnChooser(); diff --git a/e2e/testcafe-devextreme/tests/cardView/helpers/cardUtils.ts b/e2e/testcafe-devextreme/tests/cardView/helpers/cardUtils.ts index 901afcd69921..1eafdfc70ebb 100644 --- a/e2e/testcafe-devextreme/tests/cardView/helpers/cardUtils.ts +++ b/e2e/testcafe-devextreme/tests/cardView/helpers/cardUtils.ts @@ -1,7 +1,6 @@ import CardView from 'devextreme-testcafe-models/cardView'; const FIELD_CAPTION_SELECTOR = '.dx-cardview-field-caption'; -const CARD_FIELD_CAPTION_TIMEOUT = 1000; export const getCardFieldCaptions = async ( t: TestController, @@ -13,7 +12,7 @@ export const getCardFieldCaptions = async ( await t .expect(card.element.find(FIELD_CAPTION_SELECTOR).count) - .eql(expectedCount, { timeout: CARD_FIELD_CAPTION_TIMEOUT }); + .eql(expectedCount); const captions = await card.getCaptions();