@browsermation/test 0.0.63-beta.15 → 0.0.63-beta.16
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/reporter.js +5 -1
- package/package.json +1 -1
package/dist/reporter.js
CHANGED
|
@@ -162,7 +162,10 @@ var BrowsermationReporter = class {
|
|
|
162
162
|
git_remote_origin_url: await this.gitRemoteOriginUrl(),
|
|
163
163
|
totalTests: suite.allTests().length,
|
|
164
164
|
playwright_version: _config.version,
|
|
165
|
-
node_version: process.version
|
|
165
|
+
node_version: process.version,
|
|
166
|
+
project_name: suite.project().name,
|
|
167
|
+
suite_title: suite.title,
|
|
168
|
+
suite_type: suite.type
|
|
166
169
|
};
|
|
167
170
|
this.log(`${JSON.stringify(data)}
|
|
168
171
|
`);
|
|
@@ -209,6 +212,7 @@ var BrowsermationReporter = class {
|
|
|
209
212
|
id: test.id,
|
|
210
213
|
suite_run_id: this.suiteRunId,
|
|
211
214
|
type: "test-end",
|
|
215
|
+
project: test.parent.project.name,
|
|
212
216
|
title: test.title,
|
|
213
217
|
title_path: test.titlePath,
|
|
214
218
|
result: result.status,
|