Open rebeccadavidsson opened 1 year ago
It is now possible to use a custom includedImpacts key in the cy.checkA11y() function. Is it possible to use this key in cy.configureAxe()? Such as:
cy.checkA11y()
cy.configureAxe()
cy.configureAxe({ includedImpacts: ['critical'] })
or
cy.configureAxe({ rules: [{ id: 'includedImpacts', value: ['critical'] }] })
This would avoid some duplication.
It is now possible to use a custom includedImpacts key in the
cy.checkA11y()
function. Is it possible to use this key incy.configureAxe()
? Such as:or
This would avoid some duplication.