@arghajit/playwright-pulse-report 0.2.1 → 0.2.2
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 +120 -56
- package/dist/reporter/playwright-pulse-reporter.d.ts +2 -0
- package/dist/reporter/playwright-pulse-reporter.js +118 -13
- package/dist/types/index.d.ts +17 -0
- package/package.json +11 -51
- package/scripts/generate-email-report.mjs +714 -0
- package/scripts/generate-report.mjs +2277 -0
- package/scripts/generate-static-report.mjs +1137 -945
- package/scripts/merge-pulse-report.js +1 -0
- package/scripts/{sendReport.js → sendReport.mjs} +138 -71
- package/screenshots/127-0-0-1-5500-pulse-report-output-playwright-pulse-static-report-html-i-Phone-14-Pro-Max-1.png +0 -0
- package/screenshots/127-0-0-1-5500-pulse-report-output-playwright-pulse-static-report-html-i-Phone-14-Pro-Max.png +0 -0
- package/screenshots/Email-report.jpg +0 -0
- package/screenshots/Users-arghajitsingha-Downloads-pulse-report-1-playwright-pulse-static-report-html-1.png +0 -0
- package/screenshots/Users-arghajitsingha-Downloads-pulse-report-1-playwright-pulse-static-report-html-2.png +0 -0
- package/screenshots/Users-arghajitsingha-Downloads-pulse-report-1-playwright-pulse-static-report-html.png +0 -0
- package/screenshots/image.png +0 -0
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.2",
|
|
5
5
|
"description": "A Playwright reporter and dashboard for visualizing test results.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"playwright",
|
|
@@ -26,9 +26,11 @@
|
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"bin": {
|
|
28
28
|
"generate-pulse-report": "./scripts/generate-static-report.mjs",
|
|
29
|
+
"generate-report": "./scripts/generate-report.mjs",
|
|
29
30
|
"merge-pulse-report": "./scripts/merge-pulse-report.js",
|
|
30
|
-
"send-email": "./scripts/sendReport.
|
|
31
|
-
"generate-trend": "./scripts/generate-trend.mjs"
|
|
31
|
+
"send-email": "./scripts/sendReport.mjs",
|
|
32
|
+
"generate-trend": "./scripts/generate-trend.mjs",
|
|
33
|
+
"generate-email-report": "./scripts/generate-email-report.mjs"
|
|
32
34
|
},
|
|
33
35
|
"exports": {
|
|
34
36
|
".": {
|
|
@@ -37,78 +39,36 @@
|
|
|
37
39
|
}
|
|
38
40
|
},
|
|
39
41
|
"scripts": {
|
|
40
|
-
"dev": "next dev --turbopack -p 9002",
|
|
41
|
-
"genkit:dev": "genkit start -- tsx src/ai/dev.ts",
|
|
42
|
-
"genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts",
|
|
43
42
|
"build:reporter": "tsc -p tsconfig.reporter.json",
|
|
44
|
-
"build:next": "next build",
|
|
45
|
-
"build": "npm run build:reporter && npm run build:next",
|
|
46
|
-
"start": "next start",
|
|
47
|
-
"lint": "next lint",
|
|
48
43
|
"typecheck": "tsc --noEmit",
|
|
49
44
|
"prepublishOnly": "npm run build:reporter",
|
|
50
45
|
"report:static": "node ./scripts/generate-static-report.mjs",
|
|
46
|
+
"report:generate": "node ./scripts/generate-report.mjs",
|
|
51
47
|
"report:merge": "node ./scripts/merge-pulse-report.js",
|
|
52
|
-
"report:email": "node ./scripts/sendReport.
|
|
48
|
+
"report:email": "node ./scripts/sendReport.mjs",
|
|
49
|
+
"report:minify": "node ./scripts/generate-email-report.mjs"
|
|
53
50
|
},
|
|
54
51
|
"dependencies": {
|
|
55
|
-
"@genkit-ai/googleai": "^1.6.2",
|
|
56
|
-
"@genkit-ai/next": "^1.6.2",
|
|
57
|
-
"@hookform/resolvers": "^4.1.3",
|
|
58
|
-
"@radix-ui/react-accordion": "^1.2.3",
|
|
59
|
-
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
60
|
-
"@radix-ui/react-avatar": "^1.1.3",
|
|
61
|
-
"@radix-ui/react-checkbox": "^1.1.4",
|
|
62
|
-
"@radix-ui/react-dialog": "^1.1.6",
|
|
63
|
-
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
64
|
-
"@radix-ui/react-label": "^2.1.2",
|
|
65
|
-
"@radix-ui/react-menubar": "^1.1.6",
|
|
66
|
-
"@radix-ui/react-popover": "^1.1.6",
|
|
67
|
-
"@radix-ui/react-progress": "^1.1.2",
|
|
68
|
-
"@radix-ui/react-radio-group": "^1.2.3",
|
|
69
|
-
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
70
|
-
"@radix-ui/react-select": "^2.1.6",
|
|
71
|
-
"@radix-ui/react-separator": "^1.1.2",
|
|
72
|
-
"@radix-ui/react-slider": "^1.2.3",
|
|
73
|
-
"@radix-ui/react-slot": "^1.1.2",
|
|
74
|
-
"@radix-ui/react-switch": "^1.1.3",
|
|
75
|
-
"@radix-ui/react-tabs": "^1.1.3",
|
|
76
|
-
"@radix-ui/react-toast": "^1.2.6",
|
|
77
|
-
"@radix-ui/react-tooltip": "^1.1.8",
|
|
78
|
-
"@tanstack-query-firebase/react": "^1.0.5",
|
|
79
|
-
"@tanstack/react-query": "^5.66.0",
|
|
80
52
|
"archiver": "^7.0.1",
|
|
81
53
|
"class-variance-authority": "^0.7.1",
|
|
82
54
|
"clsx": "^2.1.1",
|
|
83
55
|
"d3": "^7.9.0",
|
|
84
56
|
"date-fns": "^3.6.0",
|
|
85
57
|
"dotenv": "^16.5.0",
|
|
86
|
-
"firebase": "^11.3.0",
|
|
87
|
-
"genkit": "^1.6.2",
|
|
88
58
|
"highcharts": "^12.2.0",
|
|
89
59
|
"jsdom": "^26.1.0",
|
|
90
60
|
"lucide-react": "^0.475.0",
|
|
91
|
-
"
|
|
61
|
+
"node-fetch": "^3.3.2",
|
|
92
62
|
"nodemailer": "^7.0.3",
|
|
93
63
|
"patch-package": "^8.0.0",
|
|
94
|
-
"react": "^18.3.1",
|
|
95
|
-
"react-day-picker": "^8.10.1",
|
|
96
|
-
"react-dom": "^18.3.1",
|
|
97
|
-
"react-hook-form": "^7.54.2",
|
|
98
64
|
"recharts": "^2.15.1",
|
|
99
|
-
"
|
|
100
|
-
"tailwindcss-animate": "^1.0.7",
|
|
65
|
+
"ua-parser-js": "^2.0.3",
|
|
101
66
|
"zod": "^3.24.2"
|
|
102
67
|
},
|
|
103
68
|
"devDependencies": {
|
|
104
69
|
"@types/node": "^20",
|
|
105
|
-
"@types/
|
|
106
|
-
"@types/react-dom": "^18",
|
|
70
|
+
"@types/ua-parser-js": "^0.7.39",
|
|
107
71
|
"eslint": "9.25.1",
|
|
108
|
-
"eslint-config-next": "15.3.1",
|
|
109
|
-
"genkit-cli": "^1.6.1",
|
|
110
|
-
"postcss": "^8",
|
|
111
|
-
"tailwindcss": "^3.4.1",
|
|
112
72
|
"typescript": "^5"
|
|
113
73
|
},
|
|
114
74
|
"engines": {
|