Skip to content

Commit f0f2ab7

Browse files
author
ignace
committed
fix: disable scrollable-region-focusable a11y rule
1 parent 3daeab4 commit f0f2ab7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/acceptance/homepage/en-us-test.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ module('Acceptance | Homepage | en-US', function (hooks) {
1818

1919
test('Accessibility audit', async function (assert) {
2020
await visit('/');
21-
await a11yAudit();
21+
await a11yAudit({
22+
rules: {
23+
'scrollable-region-focusable': {
24+
enabled: false,
25+
},
26+
},
27+
});
2228

2329
assert.ok(true);
2430
});

0 commit comments

Comments
 (0)