Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function testsFactory(testModel: {
assertFirstColumnHidden: (t: TestController, cardView: CardView) => Promise<void>;
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();
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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();

Expand Down
Loading