axe-html-reporter
Advanced tools
Comparing version 2.2.8 to 2.2.9
{ | ||
"name": "axe-html-reporter", | ||
"version": "2.2.8", | ||
"version": "2.2.9", | ||
"description": "The module that allows you to create HTML Report from raw accessibility aXe result object", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -38,2 +38,5 @@ import { createHtmlReport } from '../src'; | ||
const reportFileName = 'tcAllPassedOnlyViolations.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -57,2 +60,5 @@ results: { | ||
it('Violations and URL with default report file name', async () => { | ||
fs.rmSync(getPathToCreatedReport(), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -70,2 +76,5 @@ results: { | ||
const reportFileName = 'urlIsNotPassed.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -85,2 +94,5 @@ results: { | ||
const reportFileName = 'tcPassesAndViolations.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -102,2 +114,5 @@ results: { | ||
const reportFileName = 'tcPassesViolationsIncomplete.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
const outputDir = 'temp'; | ||
@@ -127,2 +142,5 @@ createHtmlReport({ | ||
const reportFileName = 'tcWithTheKey.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -148,2 +166,5 @@ results: { | ||
const reportFileName = 'tcInapplicablePresent.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -167,2 +188,5 @@ results: { | ||
const reportFileName = 'tcOnlyPasses.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
createHtmlReport({ | ||
@@ -186,2 +210,5 @@ results: { | ||
const reportFileName = 'tcIncludingCustomSummary.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
const customSummary = `Test Case: Full page analysis | ||
@@ -208,2 +235,5 @@ <br>Steps:</br> | ||
const reportFileName = 'tsAllOptionalParametersPresent.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
const customSummary = `Test Case: Full page analysis | ||
@@ -242,2 +272,5 @@ <br>Steps:</br> | ||
const reportFileName = 'index.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
const outputDir = 'docs'; | ||
@@ -278,2 +311,5 @@ createHtmlReport({ | ||
const reportFileName = 'githubPages.html'; | ||
fs.rmSync(getPathToCreatedReport(reportFileName), { | ||
force: true, | ||
}); | ||
const customSummary = "Test own github pages and report accessibility"; | ||
@@ -280,0 +316,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3127067
28427