@arghajit/dummy 0.1.0-beta-27 → 0.1.0-beta-29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/scripts/generate-report.mjs +704 -309
- package/scripts/generate-static-report.mjs +1380 -847
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ The project provides these utility commands:
|
|
|
16
16
|
| Command | Description |
|
|
17
17
|
|------------------------|-----------------------------------------------------------------------------|
|
|
18
18
|
| `generate-report` | Generates playwright-pulse-report.html, Loads screenshots and images dynamically from the attachments/ directory, Produces a lighter HTML file with faster initial load, Requires attachments/ directory to be present when viewing the report |
|
|
19
|
-
| `generate-pulse-report`| Generates `playwright-pulse-static-report.html`, Self-contained, no server required, Preserves all dashboard functionality |
|
|
19
|
+
| `generate-pulse-report`| Generates `playwright-pulse-static-report.html`, Self-contained, no server required, Preserves all dashboard functionality, all the attachments are embadded in the report, no need to have attachments/ directory when viewing the report |
|
|
20
20
|
| `merge-pulse-report` | Combines multiple parallel test json reports, basically used in sharding |
|
|
21
21
|
| `generate-trend` | Analyzes historical trends in test results |
|
|
22
22
|
| `generate-email-report`| Generates email-friendly report versions |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arghajit/dummy",
|
|
3
3
|
"author": "Arghajit Singha",
|
|
4
|
-
"version": "0.1.0-beta-
|
|
4
|
+
"version": "0.1.0-beta-29",
|
|
5
5
|
"description": "A Playwright reporter and dashboard for visualizing test results.",
|
|
6
6
|
"homepage": "https://playwright-pulse-report.netlify.app/",
|
|
7
7
|
"keywords": [
|