You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document describes how to use Access Continuum for automated accessibility testing in Spartacus.
4
+
5
+
## Overview
6
+
7
+
Access Continuum is integrated into our Cypress E2E testing framework to automatically check for accessibility issues during test runs. This helps us identify and fix accessibility problems early in the development process.
8
+
9
+
## Setup
10
+
11
+
The Access Continuum integration is set up in `cypress/support/continuum.commands.ts`. This file provides custom Cypress commands for running accessibility tests.
12
+
13
+
## Usage
14
+
15
+
### Creating Accessibility Tests
16
+
17
+
1. Create a new test file in `cypress/e2e/accessibility/` with a naming convention that indicates it's an accessibility test (e.g., `*.a11y-e2e.cy.ts`).
18
+
19
+
2. Import the `checkA11yConcerns` utility function:
0 commit comments