We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c679fd9 commit 170f114Copy full SHA for 170f114
core/src/components/picker/test/a11y/picker.e2e.ts
@@ -7,7 +7,7 @@ configs().forEach(({ title, config }) => {
7
test('should not have accessibility violations', async ({ page }) => {
8
await page.goto(`/src/components/picker/test/a11y`, config);
9
10
- const results = await new AxeBuilder({ page }).analyze();
+ const results = await new AxeBuilder({ page }).disableRules('color-contrast').analyze();
11
12
const hasKnownViolations = results.violations.filter((violation) => violation.id === 'color-contrast');
13
const violations = results.violations.filter((violation) => !hasKnownViolations.includes(violation));
0 commit comments