@checkly/playwright-reporter 0.1.9 → 1.0.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.
Files changed (4) hide show
  1. package/README.md +266 -0
  2. package/dist/index.d.ts +340 -175
  3. package/dist/index.js +1856 -641
  4. package/package.json +16 -14
package/package.json CHANGED
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "name": "@checkly/playwright-reporter",
3
- "version": "0.1.9",
4
- "description": "Playwright reporter that generates ZIP archives containing JSON reports and test assets",
3
+ "version": "1.0.0",
4
+ "description": "Standalone Playwright reporter for Checkly - compatible with Playwright 1.40-1.57+",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "files": [
9
9
  "dist",
10
- "README.md"
10
+ "README.md",
11
+ "LICENSE"
11
12
  ],
12
13
  "keywords": [
13
14
  "playwright",
14
15
  "reporter",
15
16
  "checkly",
16
- "testing",
17
- "zip",
18
- "assets"
17
+ "testing"
19
18
  ],
20
19
  "author": "Checkly",
21
20
  "license": "Apache-2.0",
@@ -25,21 +24,24 @@
25
24
  "directory": "packages/reporter"
26
25
  },
27
26
  "dependencies": {
28
- "archiver": "git+ssh://git@github.com:checkly/node-archiver.git",
29
- "axios": "^1.12.2",
30
- "form-data": "^4.0.4"
27
+ "axios": "1.12.2",
28
+ "form-data": "4.0.4"
31
29
  },
32
30
  "peerDependencies": {
33
31
  "@playwright/test": ">=1.40.0"
34
32
  },
35
33
  "devDependencies": {
36
- "@playwright/test": "^1.56.0",
34
+ "@playwright/test": "1.57.0",
37
35
  "tsup": "8.5.1",
38
- "typescript": "^5.9.3",
39
- "@checkly/reporter-clients": "0.1.6",
40
- "@checkly/reporter-utils": "0.1.6"
36
+ "tsx": "4.19.0",
37
+ "typescript": "5.9.3",
38
+ "@checkly/reporter-utils": "1.0.0"
41
39
  },
42
40
  "scripts": {
43
- "build": "tsup"
41
+ "build": "tsup",
42
+ "test:integration": "playwright test -c src/__tests__/integration/playwright.config.ts",
43
+ "test:integration:validate": "tsx src/__tests__/integration/validate-baseline.ts",
44
+ "test:pw-version": "./scripts/test-pw-version.sh",
45
+ "test:pw-matrix": "./scripts/test-pw-version.sh all"
44
46
  }
45
47
  }