@tracelane/report 0.1.0-alpha.4 → 0.1.0-alpha.6

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 +4 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,13 +1,15 @@
1
1
  # @tracelane/report
2
2
 
3
- The self-contained, offline HTML report builder for [`tracelane`](https://github.com/Cubenest/rrweb-stack/tree/main/packages/tracelane-core). Given a captured rrweb event stream plus test metadata, it produces a **single `.html` file** that:
3
+ > The reporter for your WebdriverIO, Playwright, and Cypress tests. Self-contained HTML for every run replay failures, audit successes, attach to any bug tracker. No SaaS, no dashboard, no signup.
4
+
5
+ The self-contained, offline HTML report builder for [`tracelane`](https://github.com/Cubenest/rrweb-stack). Given a captured rrweb event stream plus test metadata, it produces a **single `.html` file** that:
4
6
 
5
7
  - opens in any browser, fully offline (no network fetch at view time);
6
8
  - embeds the [`rrweb-player`](https://www.npmjs.com/package/rrweb-player) UMD + CSS inline;
7
9
  - embeds the events as a gzipped, base64-encoded blob that is decompressed in-page with an inlined [`fflate`](https://github.com/101arrowz/fflate) gunzip;
8
10
  - renders console + network panels, a metadata header, and a "Copy as Markdown for AI paste" button.
9
11
 
10
- Not generally intended for direct consumption — depend on a product package (`@tracelane/wdio`) instead.
12
+ **Not generally intended for direct consumption** — depend on a product package (`@tracelane/wdio`) instead. See the [`@tracelane/wdio` README](https://github.com/Cubenest/rrweb-stack/tree/main/packages/tracelane-wdio) for the integration guide.
11
13
 
12
14
  ## Usage
13
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tracelane/report",
3
- "version": "0.1.0-alpha.4",
3
+ "version": "0.1.0-alpha.6",
4
4
  "description": "Self-contained, offline HTML report builder for tracelane. Embeds the rrweb player and a gzipped event blob into a single .html file.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -20,8 +20,8 @@
20
20
  "dependencies": {
21
21
  "fflate": "^0.8.2",
22
22
  "rrweb-player": "1.0.0-alpha.4",
23
- "@cubenest/rrweb-core": "0.1.0-alpha.1",
24
- "@tracelane/core": "0.1.0-alpha.3"
23
+ "@cubenest/rrweb-core": "0.1.0-alpha.2",
24
+ "@tracelane/core": "0.1.0-alpha.5"
25
25
  },
26
26
  "devDependencies": {
27
27
  "jsdom": "^25.0.1"