@actboard/playwright-reporter 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  </p>
9
9
 
10
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.
11
+ The official Playwright reporter for <a href="https://actboard.io"><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
12
  </p>
13
13
 
14
14
  ---
@@ -38,7 +38,7 @@ pnpm add -D @actboard/playwright-reporter
38
38
 
39
39
  ### 1. Start ActBoard
40
40
 
41
- **Cloud:** Sign up at [actboard.dev](https://actboard.dev) and get an API key.
41
+ **Cloud:** Sign up at [actboard.io](https://actboard.io) and get an API key.
42
42
 
43
43
  **Self-hosted (Docker):**
44
44
  ```bash
@@ -63,7 +63,7 @@ export default defineConfig({
63
63
  reporter: [
64
64
  ['list'], // keep the terminal reporter
65
65
  ['@actboard/playwright-reporter', {
66
- serverUrl: 'http://localhost:3141', // or https://actboard.dev
66
+ serverUrl: 'http://localhost:3141', // or https://actboard.io
67
67
  apiKey: process.env.ACTBOARD_API_KEY,
68
68
  project: 'e2e-production', // must match your project slug
69
69
  branch: process.env.GITHUB_REF_NAME || 'local',
@@ -108,7 +108,7 @@ The reporter reads these automatically — no code changes needed in CI:
108
108
 
109
109
  ```bash
110
110
  ACTBOARD_API_KEY=act_myproject_abc123 # required
111
- ACTBOARD_SERVER_URL=https://actboard.dev # optional, default: localhost:3141
111
+ ACTBOARD_SERVER_URL=https://actboard.io # optional, default: localhost:3141
112
112
  ACTBOARD_PROJECT=e2e-production # optional, use if project not set in config
113
113
  ```
114
114
 
@@ -287,4 +287,4 @@ If the server is unreachable, the reporter logs a warning and exits gracefully
287
287
 
288
288
  ## License
289
289
 
290
- MIT © [ActBoard](https://actboard.dev)
290
+ MIT © [ActBoard](https://actboard.io)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actboard/playwright-reporter",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
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",
@@ -35,7 +35,7 @@
35
35
  "url": "https://github.com/actboard/actboard.git",
36
36
  "directory": "reporter"
37
37
  },
38
- "homepage": "https://actboard.dev",
38
+ "homepage": "https://actboard.io",
39
39
  "bugs": {
40
40
  "url": "https://github.com/actboard/actboard/issues"
41
41
  },