@arghajit/playwright-pulse-report 0.2.6 → 0.2.8
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 +3 -3
- package/package.json +6 -3
- package/scripts/sendReport.mjs +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Playwright Pluse Report
|
|
2
2
|
|
|
3
|
-

|
|
4
|
+
|
|
4
5
|
_The ultimate Playwright reporter — Interactive dashboard with historical trend analytics, CI/CD-ready standalone HTML reports, and sharding support for scalable test execution._
|
|
5
6
|
|
|
6
7
|
## [Live Demo](https://pulse-report.netlify.app/)
|
|
@@ -272,8 +273,7 @@ export default defineConfig({
|
|
|
272
273
|
|
|
273
274
|
---
|
|
274
275
|
|
|
275
|
-
|
|
276
|
-
<h2>Pulse Dashboard</h2>
|
|
276
|
+

|
|
277
277
|
|
|
278
278
|
**Real-time Playwright Test Monitoring & Analysis**
|
|
279
279
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arghajit/playwright-pulse-report",
|
|
3
3
|
"author": "Arghajit Singha",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.8",
|
|
5
5
|
"description": "A Playwright reporter and dashboard for visualizing test results.",
|
|
6
6
|
"homepage": "https://playwright-pulse-report.netlify.app/",
|
|
7
7
|
"keywords": [
|
|
@@ -73,13 +73,16 @@
|
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/node": "^20",
|
|
75
75
|
"@types/ua-parser-js": "^0.7.39",
|
|
76
|
-
"eslint": "9.
|
|
76
|
+
"eslint": "^9.39.1",
|
|
77
77
|
"typescript": "^5"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
|
-
"node": ">=
|
|
80
|
+
"node": ">=18"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
83
|
"@playwright/test": ">=1.40.0"
|
|
84
|
+
},
|
|
85
|
+
"overrides": {
|
|
86
|
+
"glob": "^13.0.0"
|
|
84
87
|
}
|
|
85
88
|
}
|
package/scripts/sendReport.mjs
CHANGED
|
@@ -289,7 +289,7 @@ const sendEmail = async (credentials) => {
|
|
|
289
289
|
}
|
|
290
290
|
};
|
|
291
291
|
|
|
292
|
-
async function fetchCredentials(retries =
|
|
292
|
+
async function fetchCredentials(retries = 10) {
|
|
293
293
|
// Ensure fetch is initialized from the dynamic import before calling this
|
|
294
294
|
if (!fetch) {
|
|
295
295
|
try {
|