@alternative-path/testlens-playwright-reporter 0.4.4 → 0.4.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.
- package/index.d.ts +3 -0
- package/index.js +230 -102
- package/index.ts +236 -104
- package/package.json +2 -1
- package/postinstall.js +49 -39
package/index.d.ts
CHANGED
|
@@ -161,6 +161,8 @@ export declare class TestLensReporter implements Reporter {
|
|
|
161
161
|
private runCreationFailed;
|
|
162
162
|
private cliArgs;
|
|
163
163
|
private pendingUploads;
|
|
164
|
+
private artifactStats;
|
|
165
|
+
private artifactsSeen;
|
|
164
166
|
/**
|
|
165
167
|
* Parse custom metadata from environment variables
|
|
166
168
|
* Checks for common metadata environment variables
|
|
@@ -184,6 +186,7 @@ export declare class TestLensReporter implements Reporter {
|
|
|
184
186
|
private extractTestBlocks;
|
|
185
187
|
private collectGitInfo;
|
|
186
188
|
private getArtifactType;
|
|
189
|
+
private bumpArtifactStat;
|
|
187
190
|
private extractTags;
|
|
188
191
|
private getTestId;
|
|
189
192
|
private uploadArtifactToS3;
|