chore(): sync with main

This commit is contained in:
Liam DeBeasi
2023-03-03 12:00:21 -05:00
196 changed files with 293 additions and 326 deletions

View File

@ -6,7 +6,8 @@ test.describe('tab-button: a11y', () => {
test('should not have any axe violations', async ({ page }) => {
await page.goto('/src/components/tab-button/test/a11y');
const results = await new AxeBuilder({ page }).analyze();
// TODO FW-3604
const results = await new AxeBuilder({ page }).disableRules('color-contrast').analyze();
expect(results.violations).toEqual([]);
});
});