pa11y-ci-reporter-runner
Version:
Pa11y CI Reporter Runner is designed to facilitate testing of Pa11y CI reporters. Given a Pa11y CI JSON results file and optional configuration it simulates the Pa11y CI calls to the reporter.
24 lines (20 loc) • 346 B
JavaScript
;
/**
* Valid states for the runner.
*
* @module runner-states
*/
/**
* Enum for runner states.
*
* @readonly
* @enum {string}
* @static
*/
const RunnerStates = Object.freeze({
afterAll: 'afterAll',
beforeAll: 'beforeAll',
beginUrl: 'beginUrl',
urlResults: 'urlResults'
});
module.exports = RunnerStates;