New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nil1511/playwright-merge-html-reports

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nil1511/playwright-merge-html-reports

Merge Playwright HTML reports

0.2.6
latest
Source
npm
Version published
Maintainers
1
Created
Source

Merge Playwright HTML reports

  • Merge Playwright HTML reports to a single HTML report

  • The index.html file is generated and other artifacts (screenshot, trace file etc) are copied from the source folders to the merged Report folder

  • Built on node 14.18.1.

  • Note: @playwright/test is a peer dependency, not a dev dependency.

  • Inspiration https://github.com/microsoft/playwright/issues/10437

Usage

npm install playwright-merge-html-reports --dev
  • You will need to install @playwright/test package first (if not already done).
  • In your Node.js script
const { mergeHTMLReports } = require("playwright-merge-html-reports");

Arguments

  • inputReportPaths - Array of path to html report folders
mergeHTMLReports([
  process.cwd() + "/html_report-1",
  process.cwd() + "/html_report-2"
])
  • config - Optional

const inputReportPaths = [
  process.cwd() + "/html_report-1",
  process.cwd() + "/html_report-2"
];

const config = {
  outputFolderName: "merged-html-report", // default value
  outputBasePath: process.cwd() // default value
}

mergeHTMLReports(inputReportPaths, config)

Spec

  • TS support
  • Uses jszip and yazl for encoding and decoding zipped content from the index.html file.

Upcoming features

  • Usage directly on Command line

Keywords

playwright-merge-html-reports

FAQs

Package last updated on 25 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts