You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6781,7 +6781,7 @@ test('Focus should be set to the grid to allow keyboard navigation when the focu
6781
6781
});
6782
6782
6783
6783
[true,false].forEach((focusedRowEnabled)=>{
6784
-
test.meta({unstable: focusedRowEnabled})(`Focus should return to the last active cell when re-entering the rowsview via kbn if focusedRowEnabled=${focusedRowEnabled} (T1308919)`,async(t)=>{
6784
+
test(`Focus should return to the last active cell when re-entering the rowsview via kbn if focusedRowEnabled=${focusedRowEnabled} (T1308919)`,async(t)=>{
6785
6785
// arrange
6786
6786
constbutton=newButton('#otherContainer');
6787
6787
constdataGrid=newDataGrid('#container');
@@ -6795,7 +6795,11 @@ test('Focus should be set to the grid to allow keyboard navigation when the focu
6795
6795
// act
6796
6796
awaitt
6797
6797
.click(searchPanel.input)
6798
-
.pressKey('tab tab tab tab tab');
6798
+
.pressKey('tab')
6799
+
.pressKey('tab')
6800
+
.pressKey('tab')
6801
+
.pressKey('tab')
6802
+
.pressKey('tab');
6799
6803
6800
6804
// assert
6801
6805
awaitt.expect(secondIDCell.isFocused).ok();
@@ -6811,13 +6815,18 @@ test('Focus should be set to the grid to allow keyboard navigation when the focu
Copy file name to clipboardExpand all lines: e2e/testcafe-devextreme/tests/dataGrid/common/selection.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import { testScreenshot } from '../../../helpers/themeUtils';
9
9
fixture.disablePageReloads`Selection`
10
10
.page(url(__dirname,'../../container.html'));
11
11
12
-
test.meta({unstable: true})('selectAll state should be correct after unselect item if refresh(true) is called inside onSelectionChanged (T1048081)',async(t)=>{
12
+
test('selectAll state should be correct after unselect item if refresh(true) is called inside onSelectionChanged (T1048081)',async(t)=>{
0 commit comments