Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Table: Add ability to specify sticky columns #1395

Merged
merged 19 commits into from
Apr 7, 2021
7 changes: 6 additions & 1 deletion cypress/integration/accessibility_Table_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ describe('Table Accessibility check', () => {
it('Tests accessibility on the Table page', () => {
cy.configureAxe({
rules: [
// Disabled until converted to new docs
{
// Disabled to avoid confusion for sticky header example
id: 'color-contrast',
enabled: false,
},
{
// Disabled to avoid confusion for sticky header and column examples
id: 'scrollable-region-focusable',
enabled: false,
},
Expand Down
Loading