@testrelic/playwright-analytics 2.9.0 → 2.11.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/index.cjs +75 -71
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +75 -71
- package/dist/index.js.map +1 -1
- package/dist/reporter-entry.cjs +79 -75
- package/dist/reporter-entry.cjs.map +1 -1
- package/dist/reporter-entry.d.cts +3 -0
- package/dist/reporter-entry.d.ts +3 -0
- package/dist/reporter-entry.js +79 -75
- package/dist/reporter-entry.js.map +1 -1
- package/package.json +1 -1
|
@@ -94,6 +94,8 @@ declare class TestRelicReporter {
|
|
|
94
94
|
private testRunId;
|
|
95
95
|
private collectedTests;
|
|
96
96
|
private fixtureDataReceived;
|
|
97
|
+
/** True once any test produced navigation data this run (pre-toggle-drop). */
|
|
98
|
+
private navigationsCaptured;
|
|
97
99
|
private testCount;
|
|
98
100
|
private cloudClient;
|
|
99
101
|
private cloudRunId;
|
|
@@ -106,6 +108,7 @@ declare class TestRelicReporter {
|
|
|
106
108
|
private streamingWriter;
|
|
107
109
|
private testIndex;
|
|
108
110
|
private summaryCounters;
|
|
111
|
+
private streamingAgg;
|
|
109
112
|
constructor(options?: Partial<ReporterConfig>);
|
|
110
113
|
onBegin(config: PwFullConfig, _suite: PwSuite): Promise<void>;
|
|
111
114
|
onTestBegin(test: PwTestCase, _result: PwTestResult): void;
|
package/dist/reporter-entry.d.ts
CHANGED
|
@@ -94,6 +94,8 @@ declare class TestRelicReporter {
|
|
|
94
94
|
private testRunId;
|
|
95
95
|
private collectedTests;
|
|
96
96
|
private fixtureDataReceived;
|
|
97
|
+
/** True once any test produced navigation data this run (pre-toggle-drop). */
|
|
98
|
+
private navigationsCaptured;
|
|
97
99
|
private testCount;
|
|
98
100
|
private cloudClient;
|
|
99
101
|
private cloudRunId;
|
|
@@ -106,6 +108,7 @@ declare class TestRelicReporter {
|
|
|
106
108
|
private streamingWriter;
|
|
107
109
|
private testIndex;
|
|
108
110
|
private summaryCounters;
|
|
111
|
+
private streamingAgg;
|
|
109
112
|
constructor(options?: Partial<ReporterConfig>);
|
|
110
113
|
onBegin(config: PwFullConfig, _suite: PwSuite): Promise<void>;
|
|
111
114
|
onTestBegin(test: PwTestCase, _result: PwTestResult): void;
|