Warning
This plugin to bokchoy is no longer being maintained. See openedx/public-engineering#13 for more details.
This package is intended to be used with Bok Choy's interface to aXe Core accessibility auditing library.
lib/custom_a11y_ruleset.js
contains some custom edX accessibility rules, written to be compatible with aXe core.
Please review the Bok Choy documentation for details about how to include custom rules in a page audit.
Install from github with:
npm install edx/edx-custom-a11y-rules#v0.1.0
Make sure npm is installed, then:
git clone https://github.com/openedx/edx-custom-a11y-rules.git
cd edx-custom-a11y-rules
make develop
New Rules and Checks should be written in lib/custom_a11y_rules.js
.
There are Jasmine tests for checking that the custom rules behave as intended and that they can integrate with aXe Core. These can be run in "dev" mode, which keeps the browser up for debugging, or in "single-run" mode to run once and exit. See the Testing checklist below for more details about writing tests.
To run tests for the custom ruleset in "dev" mode:
make test-dev
To run tests for the custom ruleset in "single-run" mode:
make test
Additionally, to check code quality with JSHint, use:
make quality
- Write sample html files with the examples of pass/fail cases in
test/fixtures/
. These are the fixtures that will be used for tests. - If you are writing a Check, add the test cases for your check to
specCases
intest/spec/checks_spec.js
. - If you are writing a Rule, add the test cases for your rule to
specCases
intest/spec/rule_spec.js
. - If needed, any new integration tests can go in
test/spec/integration_spec.js
.
When you have merged changes via a reviewed PR, update the version number in package.json
,
and publish the new version to npm using npm publish
.
If you need NPM permissions to publish a new version, send a request to front-end-dev@edx.org
.