File tree Expand file tree Collapse file tree
e2e/testcafe-devextreme/tests/cardView Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff line change 11import CardView from 'devextreme-testcafe-models/cardView' ;
22
33const FIELD_CAPTION_SELECTOR = '.dx-cardview-field-caption' ;
4- const CARD_FIELD_CAPTION_TIMEOUT = 1000 ;
54
65export 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
You can’t perform that action at this time.
0 commit comments