mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-18 18:39:21 +02:00
Fix ignore in pallyci
This commit is contained in:
parent
009d8948bc
commit
ae4fb7b5e5
2 changed files with 30 additions and 20 deletions
11
src/.pa11yci
11
src/.pa11yci
|
@ -3,7 +3,8 @@
|
||||||
"concurrency": 1,
|
"concurrency": 1,
|
||||||
"timeout": 30000
|
"timeout": 30000
|
||||||
},
|
},
|
||||||
"urls": [
|
"urls": {
|
||||||
|
[
|
||||||
"http://localhost:8080/",
|
"http://localhost:8080/",
|
||||||
"http://localhost:8080/health/",
|
"http://localhost:8080/health/",
|
||||||
"http://localhost:8080/request/",
|
"http://localhost:8080/request/",
|
||||||
|
@ -21,5 +22,13 @@
|
||||||
"http://localhost:8080/request/requirements/",
|
"http://localhost:8080/request/requirements/",
|
||||||
"http://localhost:8080/request/finished/",
|
"http://localhost:8080/request/finished/",
|
||||||
"http://localhost:8080/user-profile/"
|
"http://localhost:8080/user-profile/"
|
||||||
|
{
|
||||||
|
"url": "http://localhost:8080/request/authorizing_official/",
|
||||||
|
"viewport": { "width": 320, "height": 480 },
|
||||||
|
"ignore": [
|
||||||
|
"WCAG2AA.Principle2.Guideline2_2.2_2_1.H91"
|
||||||
|
],
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -402,7 +402,8 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
|
||||||
}
|
}
|
||||||
else: # form is not complete
|
else: # form is not complete
|
||||||
modal_button = (
|
modal_button = (
|
||||||
'<button type="button" role="submit" class="usa-button" data-close-modal>Return to request</button>'
|
"<!-- pa11y-ignore-next-line WCAG2AA.Principle2.Guideline2_2.2_2_1.H91 -->"
|
||||||
|
'<button type="button" class="usa-button" data-close-modal>Return to request</button>'
|
||||||
)
|
)
|
||||||
context_stuff = {
|
context_stuff = {
|
||||||
"form_titles": self.TITLES,
|
"form_titles": self.TITLES,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue