Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

axe-html-reporter

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

axe-html-reporter - npm Package Compare versions

Comparing version 2.2.8 to 2.2.9

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc