From 463797b97d10917cb2f1d55b0ca88cf7cc4b4de7 Mon Sep 17 00:00:00 2001 From: rudy Date: Wed, 16 Nov 2022 15:48:15 +0100 Subject: [PATCH] ajout support 6.2.3 --- lib/reporter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/reporter.js b/lib/reporter.js index a4970e4..447fdf0 100644 --- a/lib/reporter.js +++ b/lib/reporter.js @@ -5,12 +5,13 @@ const builder = require('junit-report-builder'); const report = module.exports = {}; // Pa11y version support -report.supports = '^5.0.0 || ^5.0.0-alpha || ^5.0.0-beta'; +report.supports = '^5.0.0 || ^5.0.0-alpha || ^5.0.0-beta || ^6.2.3'; // Output formatted results report.results = results => { // Create a test suite + console.log('reporter junit local'); const suite = builder.testSuite().name(results.pageUrl); results.issues.forEach(issue => {