@testrelic/playwright-analytics 2.3.13 → 2.3.15
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 +66 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +66 -65
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -106,6 +106,8 @@ declare class TestRelicReporter {
|
|
|
106
106
|
private switchToStreamingMode;
|
|
107
107
|
private buildTimeline;
|
|
108
108
|
private toTestResult;
|
|
109
|
+
/** Read a JSONL file and return parsed lines, or null if file doesn't exist. */
|
|
110
|
+
private readJsonlFile;
|
|
109
111
|
private writeReport;
|
|
110
112
|
}
|
|
111
113
|
|
package/dist/index.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ declare class TestRelicReporter {
|
|
|
106
106
|
private switchToStreamingMode;
|
|
107
107
|
private buildTimeline;
|
|
108
108
|
private toTestResult;
|
|
109
|
+
/** Read a JSONL file and return parsed lines, or null if file doesn't exist. */
|
|
110
|
+
private readJsonlFile;
|
|
109
111
|
private writeReport;
|
|
110
112
|
}
|
|
111
113
|
|