Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.26 KB

File metadata and controls

48 lines (31 loc) · 1.26 KB

IBM Equal Access Toolkit is released under the Apache-2.0 license

accessibility-checker

An automated accessibility testing for Node-based test environments from IBM Equal Access Toolkit.

To get started, please review NPM.

Features

  • Scan single or multiple files, directories, or URLs
  • Output scan report results in JSON, CSV, HTML or XSLX formats
  • Set a target rule archive
  • Configure policies to scan
  • Set violation levels that trigger test failures
  • Set violation levels that should be reported

Running Locally

Install

$ npm install

Build & Package

$ npm install
$ npm run build
$ npm run package:zip  or  npm run package:npm

Test

$ npm test

Reporting bugs

If you think you've found a bug, have questions or suggestions, please report the bug in GitHub Issues.

Known issues and workarounds

  1. If you see TypeError: ace.Checker is not a constructor:
    • Try to run your tests serially using the configuration option in your framework. For example, use --runInBand in Jest framework.