@testomatio/reporter 1.6.6-beta-detach-xml-1 → 1.6.6-beta-detach-xml-2

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.
@@ -215,7 +215,7 @@ class TestomatioPipe {
215
215
  this.store.runPublicUrl = this.runPublicUrl;
216
216
  this.store.runId = this.runId;
217
217
  console.log(APP_PREFIX, '📊 Report created. Report ID:', this.runId);
218
- process.env.runId = this.runId;
218
+ process.env.runId = this.runId;
219
219
  debug('Run created', this.runId);
220
220
  } catch (err) {
221
221
  const errorText = err.response?.data?.message || err.message;
@@ -241,7 +241,7 @@ class TestomatioPipe {
241
241
  const cancelReporting = this.requestFailures >= parseInt(process.env.TESTOMATIO_MAX_REQUEST_FAILURES, 10);
242
242
  if (cancelReporting) {
243
243
  this.reportingCanceledDueToReqFailures = true;
244
- const errorMessage =
244
+ const errorMessage =
245
245
  `⚠️ ${process.env.TESTOMATIO_MAX_REQUEST_FAILURES} requests were failed, reporting to Testomat aborted.`;
246
246
  console.warn(`${APP_PREFIX} ${chalk.yellow(errorMessage)}`);
247
247
  }
@@ -396,6 +396,7 @@ class TestomatioPipe {
396
396
  await this.axios.put(`/api/reporter/${this.runId}`, {
397
397
  api_key: this.apiKey,
398
398
  status_event,
399
+ detach: params.detach,
399
400
  duration: params.duration,
400
401
  tests: params.tests,
401
402
  });
package/lib/xmlReader.js CHANGED
@@ -21,7 +21,8 @@ const config = require('./config');
21
21
  const ridRunId = randomUUID();
22
22
 
23
23
  const TESTOMATIO_URL = process.env.TESTOMATIO_URL || 'https://app.testomat.io';
24
- const { TESTOMATIO_RUNGROUP_TITLE, TESTOMATIO_TITLE, TESTOMATIO_ENV, TESTOMATIO_RUN, TESTOMATIO_MARK_DETACHED } = process.env;
24
+ const { TESTOMATIO_RUNGROUP_TITLE, TESTOMATIO_TITLE, TESTOMATIO_ENV, TESTOMATIO_RUN,
25
+ TESTOMATIO_MARK_DETACHED } = process.env;
25
26
 
26
27
  const options = {
27
28
  ignoreDeclaration: true,
@@ -425,8 +426,8 @@ class XmlReader {
425
426
 
426
427
  const dataString = {
427
428
  ...this.stats,
428
- api_key: this.requestParams.apiKey,
429
429
  detach: this.requestParams.detach,
430
+ api_key: this.requestParams.apiKey,
430
431
  status: 'finished',
431
432
  tests: this.tests,
432
433
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "1.6.6-beta-detach-xml-1",
3
+ "version": "1.6.6-beta-detach-xml-2",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "typings": "typings/index.d.ts",