Skip to content

Commit a063e4a

Browse files
CardView: stabilize columnChooser tests (#34362)
1 parent 85407f3 commit a063e4a

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

e2e/testcafe-devextreme/tests/cardView/columnChooser/functional.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function testsFactory(testModel: {
5656
assertFirstColumnHidden: (t: TestController, cardView: CardView) => Promise<void>;
5757
config: any; // TODO: add typing
5858
}) {
59-
test.meta({ unstable: true })(`column chooser in ${testModel.name} mode should work after multiple hide/show actions`, async (t) => {
59+
test(`column chooser in ${testModel.name} mode should work after multiple hide/show actions`, async (t) => {
6060
const cardView = new CardView('#container');
6161

6262
await cardView.apiShowColumnChooser();

e2e/testcafe-devextreme/tests/cardView/helpers/cardUtils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import CardView from 'devextreme-testcafe-models/cardView';
22

33
const FIELD_CAPTION_SELECTOR = '.dx-cardview-field-caption';
4-
const CARD_FIELD_CAPTION_TIMEOUT = 1000;
54

65
export const getCardFieldCaptions = async (
76
t: TestController,
@@ -13,7 +12,7 @@ export const getCardFieldCaptions = async (
1312

1413
await t
1514
.expect(card.element.find(FIELD_CAPTION_SELECTOR).count)
16-
.eql(expectedCount, { timeout: CARD_FIELD_CAPTION_TIMEOUT });
15+
.eql(expectedCount);
1716

1817
const captions = await card.getCaptions();
1918

0 commit comments

Comments
 (0)