@testrelic/playwright-analytics 2.3.0 → 2.3.1
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/dist/index.cjs +220 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +220 -83
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testrelic/playwright-analytics",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Playwright test analytics reporter with E2E navigation tracking, API call capture, network stats, failure diagnostics, and interactive HTML reports",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|
|
@@ -77,11 +77,20 @@
|
|
|
77
77
|
"timeline-schema.json",
|
|
78
78
|
"README.md"
|
|
79
79
|
],
|
|
80
|
+
"scripts": {
|
|
81
|
+
"build": "tsup",
|
|
82
|
+
"test": "vitest run --exclude '**/e2e/**'",
|
|
83
|
+
"test:watch": "vitest",
|
|
84
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
85
|
+
"typecheck": "tsc --noEmit",
|
|
86
|
+
"test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
|
|
87
|
+
"test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
|
|
88
|
+
},
|
|
80
89
|
"peerDependencies": {
|
|
81
90
|
"@playwright/test": ">=1.35.0"
|
|
82
91
|
},
|
|
83
92
|
"dependencies": {
|
|
84
|
-
"@testrelic/core": "
|
|
93
|
+
"@testrelic/core": "workspace:*"
|
|
85
94
|
},
|
|
86
95
|
"devDependencies": {
|
|
87
96
|
"@playwright/test": "^1.35.0",
|
|
@@ -94,14 +103,5 @@
|
|
|
94
103
|
"node": ">=18"
|
|
95
104
|
},
|
|
96
105
|
"license": "MIT",
|
|
97
|
-
"homepage": "https://testrelic.ai"
|
|
98
|
-
|
|
99
|
-
"build": "tsup",
|
|
100
|
-
"test": "vitest run --exclude '**/e2e/**'",
|
|
101
|
-
"test:watch": "vitest",
|
|
102
|
-
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
103
|
-
"typecheck": "tsc --noEmit",
|
|
104
|
-
"test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
|
|
105
|
-
"test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
|
|
106
|
-
}
|
|
107
|
-
}
|
|
106
|
+
"homepage": "https://testrelic.ai"
|
|
107
|
+
}
|