@arghajit/dummy 0.1.0-beta-17 → 0.1.0-beta-18
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 +49 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,21 @@ _The ultimate Playwright reporter — Interactive dashboard with historical tren
|
|
|
55
55
|
|
|
56
56
|
[](https://ocpaxmghzmfbuhxzxzae.supabase.co/storage/v1/object/public/images//pulse-email-summary.html.png)
|
|
57
57
|
|
|
58
|
+
## Available Scripts
|
|
59
|
+
|
|
60
|
+
The project provides these utility commands:
|
|
61
|
+
|
|
62
|
+
| Command | Description |
|
|
63
|
+
|------------------------|-----------------------------------------------------------------------------|
|
|
64
|
+
| `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 |
|
|
65
|
+
| `generate-pulse-report`| Generates `playwright-pulse-static-report.html`, Self-contained, no server required, Preserves all dashboard functionality |
|
|
66
|
+
| `merge-pulse-report` | Combines multiple parallel test json reports, basically used in sharding |
|
|
67
|
+
| `generate-trend` | Analyzes historical trends in test results |
|
|
68
|
+
| `generate-email-report`| Generates email-friendly report versions |
|
|
69
|
+
| `send-email` | Generates email-friendly report versions & Distributes report via email |
|
|
70
|
+
|
|
71
|
+
Run with `npm run <command>`
|
|
72
|
+
|
|
58
73
|
## 🛠️ How It Works
|
|
59
74
|
|
|
60
75
|
1. **Reporter Collection**:
|
|
@@ -260,6 +275,39 @@ The dashboard includes AI-powered test analysis that provides:
|
|
|
260
275
|
npm install @arghajit/playwright-pulse-report@latest
|
|
261
276
|
```
|
|
262
277
|
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
<img src="https://ocpaxmghzmfbuhxzxzae.supabase.co/storage/v1/object/public/images//pulse-logo.png" alt="pulse dashboard" title="pulse dashboard" height="50px" width="80px" align="left" padding="10px"/>
|
|
281
|
+
<h2>Pulse Dashboard</h2>
|
|
282
|
+
|
|
283
|
+
**Real-time Playwright Test Monitoring & Analysis**
|
|
284
|
+
|
|
285
|
+
A Next.js component & CLI tool for visualizing Playwright test executions. Provides real-time insights, historical trends, and failure analysis.
|
|
286
|
+
|
|
287
|
+
**Key Features**:
|
|
288
|
+
|
|
289
|
+
- Interactive test result visualization
|
|
290
|
+
- Historical trend analysis
|
|
291
|
+
- Failure pattern identification
|
|
292
|
+
|
|
293
|
+
**Quick Start**:
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
npx pulse-dashboard
|
|
297
|
+
or,
|
|
298
|
+
npm run pulse-dashboard
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
*(Run from project root containing `pulse-report/` directory)*
|
|
302
|
+
|
|
303
|
+
**NPM Package**: [pulse-dashboard on npm](https://www.npmjs.com/package/pulse-dashboard)
|
|
304
|
+
|
|
305
|
+
**Tech Stack**: Next.js, TypeScript, Tailwind CSS, Playwright
|
|
306
|
+
|
|
307
|
+
*Part of the Playwright Pulse Report ecosystem*
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
263
311
|
## 📬 Support
|
|
264
312
|
|
|
265
313
|
For issues or feature requests, please [Contact Me](mailto:arghajitsingha47@gmail.com).
|
|
@@ -268,7 +316,7 @@ For issues or feature requests, please [Contact Me](mailto:arghajitsingha47@gmai
|
|
|
268
316
|
|
|
269
317
|
## 🙌🏼 Thank you
|
|
270
318
|
|
|
271
|
-
Special Thanks to [@
|
|
319
|
+
Special Thanks to [@Suman Vishwakarma](https://www.linkedin.com/in/suman-vishwakarma-426108185/), for continuous UAT feedback.
|
|
272
320
|
|
|
273
321
|
---
|
|
274
322
|
|
package/package.json
CHANGED