@testrelic/playwright-analytics 2.2.7 → 2.3.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.
- package/dist/cli.cjs +621 -30
- package/dist/index.cjs +530 -335
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +530 -335
- package/dist/index.js.map +1 -1
- package/dist/merge.cjs +1 -1
- package/dist/merge.cjs.map +1 -1
- package/dist/merge.js +1 -1
- package/dist/merge.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -86,11 +86,18 @@ declare class TestRelicReporter {
|
|
|
86
86
|
private cloudClient;
|
|
87
87
|
private cloudRunId;
|
|
88
88
|
private runTimestamp;
|
|
89
|
+
private activeReportMode;
|
|
90
|
+
private streamingWriter;
|
|
91
|
+
private testIndex;
|
|
92
|
+
private summaryCounters;
|
|
89
93
|
constructor(options?: Partial<ReporterConfig>);
|
|
90
94
|
onBegin(config: PwFullConfig, _suite: PwSuite): Promise<void>;
|
|
91
95
|
onTestBegin(test: PwTestCase, _result: PwTestResult): void;
|
|
92
96
|
onTestEnd(test: PwTestCase, result: PwTestResult): void;
|
|
93
97
|
onEnd(_result: PwFullResult): Promise<void>;
|
|
98
|
+
private finalizeStreamingReport;
|
|
99
|
+
/** Build a lightweight TestRunReport from streaming data (for HTML generation and cloud). */
|
|
100
|
+
private buildStreamingReport;
|
|
94
101
|
printsToStdio(): boolean;
|
|
95
102
|
private buildTimeline;
|
|
96
103
|
private toTestResult;
|
package/dist/index.d.ts
CHANGED
|
@@ -86,11 +86,18 @@ declare class TestRelicReporter {
|
|
|
86
86
|
private cloudClient;
|
|
87
87
|
private cloudRunId;
|
|
88
88
|
private runTimestamp;
|
|
89
|
+
private activeReportMode;
|
|
90
|
+
private streamingWriter;
|
|
91
|
+
private testIndex;
|
|
92
|
+
private summaryCounters;
|
|
89
93
|
constructor(options?: Partial<ReporterConfig>);
|
|
90
94
|
onBegin(config: PwFullConfig, _suite: PwSuite): Promise<void>;
|
|
91
95
|
onTestBegin(test: PwTestCase, _result: PwTestResult): void;
|
|
92
96
|
onTestEnd(test: PwTestCase, result: PwTestResult): void;
|
|
93
97
|
onEnd(_result: PwFullResult): Promise<void>;
|
|
98
|
+
private finalizeStreamingReport;
|
|
99
|
+
/** Build a lightweight TestRunReport from streaming data (for HTML generation and cloud). */
|
|
100
|
+
private buildStreamingReport;
|
|
94
101
|
printsToStdio(): boolean;
|
|
95
102
|
private buildTimeline;
|
|
96
103
|
private toTestResult;
|