@sa11y/jest
Accessibility matcher for Jest
Overview
The toBeAccessible()
API from this library can be used in Jest unit tests to test HTML elements or DOM for accessibility.
Install
- Using yarn:
yarn add -D @sa11y/jest
- Using npm:
npm install -D @sa11y/jest
Setup
The accessibility APIs need to be registered with Jest before they can be used in tests.
Project level
You can set up the a11y API once at the project level to make it available to all the Jest tests in the project. For an example look at the Integration test setup in @sa11y.
- Add a Jest setup file (e.g.
jest-setup.js
) and add the following code that registers the a11y API
const { registerSa11yMatcher } = require('@sa11y/jest');
registerSa11yMatcher();
- Add or Modify the Jest config at project root to invoke the Jest setup file as setup above.
In the
jest.config.js
at the root of your project, add:
module.exports = {
setupFilesAfterEnv: ['<rootDir>/jest-setup.js'],
};
- This makes the
toBeAccessible
API available for any test in the project.
Test module level
Invoke registerSa11yMatcher
before using the toBeAccessible
API in the tests
import { registerSa11yMatcher } from '@sa11y/jest';
beforeAll(() => {
registerSa11yMatcher();
});
- This makes the
toBeAccessible
API available for the tests only in that specific test module where registerSa11yMatcher()
is invoked.
Usage
- WARNING:
toBeAccessible
must be invoked with async/wait
or Promise
or the equivalent supported asynchronous method in your environment
- Not invoking it async would result in incorrect results e.g. no issues reported even when the page is not accessible
toBeAccessible
can either be invoked on the entire document
(JSDOM) or on a specific HTML element to check for accessibility
import { base, full } from '@sa11y/preset-rules';
import { registerSa11yMatcher } from '@sa11y/jest';
beforeAll(() => {
registerSa11yMatcher();
});
it('should be accessible', async () => {
await expect(document).toBeAccessible();
const elem = document.getElementById('foo');
await expect(elem).toBeAccessible();
await expect(document).toBeAccessible(full);
await expect(document).toBeAccessible(base);
});