diff --git a/cypress/e2e/map.cy.ts b/cypress/e2e/map.cy.ts index 2678930..988e698 100644 --- a/cypress/e2e/map.cy.ts +++ b/cypress/e2e/map.cy.ts @@ -111,12 +111,16 @@ describe("Map", () => { ); }); - it.only("is accessible", () => { + it("is accessible", () => { cy.visit("/"); cy.injectAxe(); - cy.checkA11y(); + cy.checkA11y({ + // Exclude the control as it has offenses but it + // originates in an upstream dependency. + exclude: [".leaflet-control-attribution"], + }); }); describe("Attribution Control", () => {