@actboard/playwright-reporter 1.0.0 → 1.0.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 +21 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# @actboard/playwright-reporter
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://www.npmjs.com/package/@actboard/playwright-reporter"><img src="https://img.shields.io/npm/v/@actboard/playwright-reporter?color=crimson&label=npm" alt="npm version" /></a>
|
|
5
|
+
<a href="https://www.npmjs.com/package/@actboard/playwright-reporter"><img src="https://img.shields.io/npm/dm/@actboard/playwright-reporter?color=blue" alt="downloads" /></a>
|
|
6
|
+
<a href="https://www.npmjs.com/package/@playwright/test"><img src="https://img.shields.io/npm/dependency-version/@actboard/playwright-reporter/peer/%40playwright%2Ftest?label=%40playwright%2Ftest" alt="Playwright peer" /></a>
|
|
7
|
+
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/license-MIT-green" alt="MIT license" /></a>
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<p align="center">
|
|
11
|
+
The official Playwright reporter for <a href="https://actboard.dev"><strong>ActBoard</strong></a> — a self-hostable dashboard that stores your Playwright test history, tracks pass rates, surfaces flaky tests, and connects to your CI pipeline.
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
### What you get
|
|
17
|
+
|
|
18
|
+
- **Full test history** — every run stored, browsable, and searchable
|
|
19
|
+
- **Pass rate trends** — see whether your suite is getting healthier over time
|
|
20
|
+
- **Flaky test detection** — tests that flip between pass/fail are automatically flagged
|
|
21
|
+
- **Branch & commit tracking** — compare runs across branches and deployments
|
|
22
|
+
- **CI-ready** — works with GitHub Actions, GitLab CI, CircleCI, Jenkins, Azure DevOps, and more
|
|
23
|
+
- **Self-hostable** — one Docker command, your data stays on your infra
|
|
4
24
|
|
|
5
25
|
---
|
|
6
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actboard/playwright-reporter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Playwright reporter that streams test results to ActBoard — the self-hostable test history dashboard",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
+
"socket": {
|
|
46
|
+
"networkAccess": true
|
|
47
|
+
},
|
|
45
48
|
"peerDependencies": {
|
|
46
49
|
"@playwright/test": ">=1.38.0"
|
|
47
50
|
},
|