@arghajit/playwright-pulse-report 0.1.0
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 +192 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +26 -0
- package/dist/lib/report-types.d.ts +8 -0
- package/dist/lib/report-types.js +2 -0
- package/dist/playwright-pulse-reporter.d.ts +26 -0
- package/dist/playwright-pulse-reporter.js +304 -0
- package/dist/reporter/attachment-utils.d.ts +10 -0
- package/dist/reporter/attachment-utils.js +192 -0
- package/dist/reporter/index.d.ts +5 -0
- package/dist/reporter/index.js +9 -0
- package/dist/reporter/lib/report-types.d.ts +8 -0
- package/dist/reporter/lib/report-types.js +2 -0
- package/dist/reporter/playwright-pulse-reporter.d.ts +27 -0
- package/dist/reporter/playwright-pulse-reporter.js +419 -0
- package/dist/reporter/reporter/playwright-pulse-reporter.d.ts +1 -0
- package/dist/reporter/reporter/playwright-pulse-reporter.js +380 -0
- package/dist/reporter/tsconfig.reporter.tsbuildinfo +1 -0
- package/dist/reporter/types/index.d.ts +52 -0
- package/dist/reporter/types/index.js +2 -0
- package/dist/types/index.d.ts +61 -0
- package/dist/types/index.js +2 -0
- package/package.json +107 -0
- package/scripts/generate-static-report.mjs +1539 -0
package/package.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@arghajit/playwright-pulse-report",
|
|
3
|
+
"author": "Arghajit Singha",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "A Playwright reporter and dashboard for visualizing test results.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"playwright",
|
|
8
|
+
"reporter",
|
|
9
|
+
"dashboard",
|
|
10
|
+
"test",
|
|
11
|
+
"reporting",
|
|
12
|
+
"nextjs",
|
|
13
|
+
"playwright-pulse",
|
|
14
|
+
"report"
|
|
15
|
+
],
|
|
16
|
+
"main": "dist/reporter/index.js",
|
|
17
|
+
"types": "dist/reporter/index.d.ts",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"scripts/generate-static-report.mjs"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"bin": {
|
|
24
|
+
"generate-pulse-report": "./scripts/generate-static-report.mjs"
|
|
25
|
+
},
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/reporter/index.js",
|
|
29
|
+
"require": "./dist/reporter/index.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "next dev --turbopack -p 9002",
|
|
34
|
+
"genkit:dev": "genkit start -- tsx src/ai/dev.ts",
|
|
35
|
+
"genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts",
|
|
36
|
+
"build:reporter": "tsc -p tsconfig.reporter.json",
|
|
37
|
+
"build:next": "next build",
|
|
38
|
+
"build": "npm run build:reporter && npm run build:next",
|
|
39
|
+
"start": "next start",
|
|
40
|
+
"lint": "next lint",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"prepublishOnly": "npm run build:reporter",
|
|
43
|
+
"report:static": "node ./scripts/generate-static-report.mjs"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@genkit-ai/googleai": "^1.6.2",
|
|
47
|
+
"@genkit-ai/next": "^1.6.2",
|
|
48
|
+
"@hookform/resolvers": "^4.1.3",
|
|
49
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
50
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
51
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
52
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
53
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
54
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
55
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
56
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
57
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
58
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
59
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
60
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
61
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
62
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
63
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
64
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
65
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
66
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
67
|
+
"@radix-ui/react-toast": "^1.2.6",
|
|
68
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
69
|
+
"@tanstack-query-firebase/react": "^1.0.5",
|
|
70
|
+
"@tanstack/react-query": "^5.66.0",
|
|
71
|
+
"class-variance-authority": "^0.7.1",
|
|
72
|
+
"clsx": "^2.1.1",
|
|
73
|
+
"d3": "^7.9.0",
|
|
74
|
+
"date-fns": "^3.6.0",
|
|
75
|
+
"firebase": "^11.3.0",
|
|
76
|
+
"genkit": "^1.6.2",
|
|
77
|
+
"jsdom": "^26.1.0",
|
|
78
|
+
"lucide-react": "^0.475.0",
|
|
79
|
+
"next": "15.2.3",
|
|
80
|
+
"patch-package": "^8.0.0",
|
|
81
|
+
"react": "^18.3.1",
|
|
82
|
+
"react-day-picker": "^8.10.1",
|
|
83
|
+
"react-dom": "^18.3.1",
|
|
84
|
+
"react-hook-form": "^7.54.2",
|
|
85
|
+
"recharts": "^2.15.1",
|
|
86
|
+
"tailwind-merge": "^3.0.1",
|
|
87
|
+
"tailwindcss-animate": "^1.0.7",
|
|
88
|
+
"zod": "^3.24.2"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@types/node": "^20",
|
|
92
|
+
"@types/react": "^18",
|
|
93
|
+
"@types/react-dom": "^18",
|
|
94
|
+
"eslint": "9.25.1",
|
|
95
|
+
"eslint-config-next": "15.3.1",
|
|
96
|
+
"genkit-cli": "^1.6.1",
|
|
97
|
+
"postcss": "^8",
|
|
98
|
+
"tailwindcss": "^3.4.1",
|
|
99
|
+
"typescript": "^5"
|
|
100
|
+
},
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=16"
|
|
103
|
+
},
|
|
104
|
+
"peerDependencies": {
|
|
105
|
+
"@playwright/test": ">=1.40.0"
|
|
106
|
+
}
|
|
107
|
+
}
|