@reportforge/playwright-pdf 0.10.2 → 0.10.3
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 +1 -1
- package/dist/index.js +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -211,7 +211,7 @@ Full reference: [reportforge.org/docs/configuration](https://reportforge.org/doc
|
|
|
211
211
|
|
|
212
212
|
### Live Runs
|
|
213
213
|
|
|
214
|
-
Watch a run as it happens. With `live` enabled, the reporter prints an unguessable watch link — boxed under a `Live Tracker` heading — to your CI logs at run start and streams per-test progress to a hosted dashboard while tests execute. All shards of one CI run converge on a single live view, each test shows its own steps and assertions as sub-lines beneath its row (Playwright's hooks, fixtures, and teardown are filtered out)
|
|
214
|
+
Watch a run as it happens. With `live` enabled, the reporter prints an unguessable watch link — boxed under a `Live Tracker` heading — to your CI logs at run start and streams per-test progress to a hosted dashboard while tests execute. All shards of one CI run converge on a single live view, each test shows its own steps and assertions as sub-lines beneath its row — each step once, as it settles (Playwright's hooks, fixtures, and teardown are filtered out) — and the PDF is still generated at the end, unchanged.
|
|
215
215
|
|
|
216
216
|
> The watch link is entitlement-gated. If you enable `live` but see no `Live Tracker` line, the reporter logs why (missing `RF_LICENSE_KEY`, or a cached token without the `live` entitlement — delete `~/.reportforge/license.json` to force re-activation).
|
|
217
217
|
|
package/dist/index.js
CHANGED
|
@@ -13920,7 +13920,7 @@ var PdfReporter = class {
|
|
|
13920
13920
|
this.liveConsole = false;
|
|
13921
13921
|
this.options = parseOptions(rawOptions);
|
|
13922
13922
|
this.dataCollector = new DataCollector(this.options.capture);
|
|
13923
|
-
const version = true ? "0.10.
|
|
13923
|
+
const version = true ? "0.10.3" : "0.x";
|
|
13924
13924
|
logger.info(`@reportforge/playwright-pdf v${version} initialised`);
|
|
13925
13925
|
this.licenseClient = new LicenseClient({
|
|
13926
13926
|
licenseKey: this.options.licenseKey,
|
|
@@ -13959,9 +13959,6 @@ var PdfReporter = class {
|
|
|
13959
13959
|
if (this.liveSteps !== "none" && isCurrentStep(step)) {
|
|
13960
13960
|
this.liveStreamer.enqueueTest(mapCurrentStep(test.id, step, this.liveShardKey));
|
|
13961
13961
|
}
|
|
13962
|
-
if (shouldEmitStep(step, this.liveSteps)) {
|
|
13963
|
-
this.liveStreamer.enqueueEvent(mapStep(test.id, step, "begin", this.liveShardKey));
|
|
13964
|
-
}
|
|
13965
13962
|
} catch {
|
|
13966
13963
|
}
|
|
13967
13964
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -13921,7 +13921,7 @@ var PdfReporter = class {
|
|
|
13921
13921
|
this.liveConsole = false;
|
|
13922
13922
|
this.options = parseOptions(rawOptions);
|
|
13923
13923
|
this.dataCollector = new DataCollector(this.options.capture);
|
|
13924
|
-
const version = true ? "0.10.
|
|
13924
|
+
const version = true ? "0.10.3" : "0.x";
|
|
13925
13925
|
logger.info(`@reportforge/playwright-pdf v${version} initialised`);
|
|
13926
13926
|
this.licenseClient = new LicenseClient({
|
|
13927
13927
|
licenseKey: this.options.licenseKey,
|
|
@@ -13960,9 +13960,6 @@ var PdfReporter = class {
|
|
|
13960
13960
|
if (this.liveSteps !== "none" && isCurrentStep(step)) {
|
|
13961
13961
|
this.liveStreamer.enqueueTest(mapCurrentStep(test.id, step, this.liveShardKey));
|
|
13962
13962
|
}
|
|
13963
|
-
if (shouldEmitStep(step, this.liveSteps)) {
|
|
13964
|
-
this.liveStreamer.enqueueEvent(mapStep(test.id, step, "begin", this.liveShardKey));
|
|
13965
|
-
}
|
|
13966
13963
|
} catch {
|
|
13967
13964
|
}
|
|
13968
13965
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reportforge/playwright-pdf",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "Enterprise-ready PDF reports for Playwright Test — minimal, detailed, and executive templates with CI/CD integrations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ReportForge",
|