Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cypress from 13.17.0 to 14.0.3 #124

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions cypress/e2e/3-civicactions-examples/a11y.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,23 @@ import 'x2js'
const X2JS = require('x2js')
const path = require('path')

context('Accessibility', () => {
context('CA home site accessibility', () => {
const casite = 'https://civicactions.com/'
const a11ysite = 'https://accessibility.civicactions.com/'

beforeEach(() => {
cy.visit(a11ysite)
})

it('homesite should have one accessible failure', () => {
cy.visit(casite)
cy.injectAxe()
// View example failure in the GUI.
cy.checkA11y(null, null, null, true)
})
})

context('CA a11y site accessibility', () => {
const a11ysite = 'https://accessibility.civicactions.com/'

beforeEach(() => {
cy.visit(a11ysite)
})

it('a11y site should be accessible with default axe options', () => {
cy.injectAxe()
Expand Down
Loading
Loading