UNPKG

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.

18 lines (13 loc) 298 B
'use strict'; /** * Default pa11y-ci configuration. * * @module default-config */ const defaultColumnWidth = 80; const defaultConfig = { concurrency: 1, useIncognitoBrowserContext: true, wrapWidth: process.stdout.columns || defaultColumnWidth }; module.exports = defaultConfig;