Skip to content

Commit 6fca907

Browse files
chore: 🤖 Add ignores for new violations (#3047)
1 parent 92f5a65 commit 6fca907

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

‎ui/admin/tests/acceptance/accounts/read-test.js‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ module('Acceptance | accounts | read', function (hooks) {
8181
});
8282

8383
test('user can navigate to account and incorrect url auto-corrects', async function (assert) {
84+
setRunOptions({
85+
rules: {
86+
label: {
87+
// [ember-a11y-ignore]: axe rule "label" automatically ignored on 2025-11-03
88+
enabled: false,
89+
},
90+
},
91+
});
92+
8493
const authMethod = this.server.create('auth-method', {
8594
scope: instances.scopes.org,
8695
});

‎ui/admin/tests/acceptance/auth-methods/update-test.js‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,15 @@ module('Acceptance | auth-methods | update', function (hooks) {
374374
});
375375

376376
test('can update an auth method and cancel changes', async function (assert) {
377+
setRunOptions({
378+
rules: {
379+
'color-contrast': {
380+
// [ember-a11y-ignore]: axe rule "color-contrast" automatically ignored on 2025-11-03
381+
enabled: false,
382+
},
383+
},
384+
});
385+
377386
await visit(urls.authMethod);
378387

379388
await click(commonSelectors.EDIT_BTN);

0 commit comments

Comments
 (0)