@tracelane/wdio 0.1.0-alpha.23 → 0.1.0-alpha.24
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 +2 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -107,8 +107,10 @@ For what `tracelane` captures, masks, and never sends off your machine, see the
|
|
|
107
107
|
| `capture.network` | `boolean` | `true` | Capture network requests via the in-page `rrweb/network@1` plugin — all browsers, no CDP. Privacy-first: only URL/method/status/timing by default (headers + bodies off; opt in via `capture.networkOptions`). CDP is an optional fallback that adds authoritative status + true no-response failures where it's available. |
|
|
108
108
|
| `capture.networkOptions` | `NetworkRecordOptions` | plugin defaults | Forwarded to the in-page network plugin (`recordHeaders`, `recordBody`, `maskRequestFn`, `payloadHostDenyList`, …). Defaults are privacy-first (headers + bodies off). Ignored when `capture.network` is `false`. |
|
|
109
109
|
| `capture.console` | `boolean` | `true` | Capture `console.*` via the rrweb console plugin. Setting this `false` also drops any `[tracelane.net]` network-error lines from the CDP fallback path, since those surface through `console.error`. |
|
|
110
|
+
| `consolePluginOptions` | `ConsolePluginOptions` | plugin defaults | Forwarded to the in-page rrweb console plugin. Ignored when `capture.console` is `false` (which instead passes `{ level: [] }` to patch no methods). |
|
|
110
111
|
| `drainIntervalMs` | `number` | `500` | Node-side drain poll interval. |
|
|
111
112
|
| `cooldownMs` | `number` | `250` | Re-injection cooldown guard (suppresses double-init on hash/HMR navigation). |
|
|
113
|
+
| `security` | `boolean` | `true` | Advisory security-hygiene signals (`[tracelane.sec]`) captured during the run and analyzed in the report. Set `false` to disable both the capture and the analysis. When on, an optional `tracelane.security.suppress.json` in the project cwd silences known-acceptable signals (missing/malformed file degrades to no suppressions). |
|
|
112
114
|
| `allure` | `boolean` | `false` | Reserved for the v1.1 Allure shim. No-op in v1. |
|
|
113
115
|
| `visualDiff` | `boolean` | `false` | Reserved for the post-MVP visual-diff add-on. No-op in v1. |
|
|
114
116
|
| `report.footer` | `boolean` | `true` | Show the tool-credit footer in the generated HTML report. Set `false` to suppress it. |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tracelane/wdio",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.24",
|
|
4
4
|
"description": "WebdriverIO Service that records rrweb sessions and writes a self-contained HTML report on failed tests. The user-facing tracelane integration for WDIO.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tracelane",
|
|
@@ -38,23 +38,23 @@
|
|
|
38
38
|
"README.md"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@tracelane/core": "0.1.0-alpha.
|
|
42
|
-
"@tracelane/report": "0.1.0-alpha.
|
|
41
|
+
"@tracelane/core": "0.1.0-alpha.18",
|
|
42
|
+
"@tracelane/report": "0.1.0-alpha.21"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@wdio/types": "^9.0.0",
|
|
46
46
|
"webdriverio": "^9.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@wdio/cli": "^9.
|
|
50
|
-
"@wdio/globals": "^9.
|
|
51
|
-
"@wdio/local-runner": "^9.
|
|
52
|
-
"@wdio/mocha-framework": "^9.
|
|
53
|
-
"@wdio/spec-reporter": "^9.
|
|
54
|
-
"@wdio/types": "^9.
|
|
55
|
-
"esbuild": "^0.28.
|
|
56
|
-
"tsx": "^4.
|
|
57
|
-
"webdriverio": "^9.
|
|
49
|
+
"@wdio/cli": "^9.29.0",
|
|
50
|
+
"@wdio/globals": "^9.29.0",
|
|
51
|
+
"@wdio/local-runner": "^9.29.0",
|
|
52
|
+
"@wdio/mocha-framework": "^9.29.0",
|
|
53
|
+
"@wdio/spec-reporter": "^9.29.0",
|
|
54
|
+
"@wdio/types": "^9.29.0",
|
|
55
|
+
"esbuild": "^0.28.1",
|
|
56
|
+
"tsx": "^4.22.4",
|
|
57
|
+
"webdriverio": "^9.29.0",
|
|
58
58
|
"@cubenest/rrweb-core": "0.1.0-alpha.7"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|