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
it('should set tabindex to null (disabled === true) on datatable-body rows when allowFocusOnRows is set to false in ShareDatatable adapter',()=>{
1845
-
constadapter=newShareAdapterMock([],[]);
1846
-
adapter.setAllowFocusOnTableRows(false);
1847
-
testAllowFocusOnRows(null,adapter);
1848
-
});
1849
-
1850
-
it('should set tabindex to 0 (disabled === false) on datatable-body rows when allowFocusOnRows is not set explicitly in ShareDatatable adapter and falls back to default value ',()=>{
1851
-
constadapter=newShareAdapterMock([],[]);
1852
-
adapter.setAllowFocusOnTableRows(true);
1853
-
testAllowFocusOnRows('0',adapter);
1854
-
});
1855
-
1856
-
it('should set tabindex to 0 (disabled === false) by default on datatable-body rows when allowFocusOnRows is not defined in Datatable adapter (fallback case)',()=>{
1857
-
constadapter=newObjectDataTableAdapter([],[]);
1858
-
testAllowFocusOnRows('0',adapter);
1859
-
});
1860
-
});
1861
-
1862
1820
it('should create focus trap on main menu open',()=>{
0 commit comments