wdio-qase-reporter 1.1.0 → 1.1.1

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/README.md CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  Publish results simple and easy.
4
4
 
5
- To install the latest beta version, run:
5
+ To install the latest version, run:
6
6
 
7
7
  ```sh
8
- npm install -D wdio-qase-reporter@beta
8
+ npm install -D wdio-qase-reporter
9
9
  ```
10
10
 
11
11
  ## Getting started
package/dist/reporter.js CHANGED
@@ -61,7 +61,6 @@ class WDIOQaseReporter extends reporter_1.default {
61
61
  }
62
62
  onRunnerStart(runner) {
63
63
  this._isMultiremote = runner.isMultiremote;
64
- // this.reporter.startTestRun();
65
64
  this.isSync = false;
66
65
  }
67
66
  onSuiteStart(suite) {
@@ -218,6 +217,7 @@ class WDIOQaseReporter extends reporter_1.default {
218
217
  testResult.message = err === null ?
219
218
  null : err.message === undefined ?
220
219
  null : err.message;
220
+ testResult.signature = (0, qase_javascript_commons_1.generateSignature)(Array.isArray(testResult.testops_id) ? testResult.testops_id : testResult.testops_id ? [testResult.testops_id] : null, [...this.storage.suites, testResult.title], testResult.params);
221
221
  await this.reporter.addTestResult(testResult);
222
222
  }
223
223
  onBeforeCommand(command) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wdio-qase-reporter",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Qase WebDriverIO Reporter",
5
5
  "homepage": "https://github.com/qase-tms/qase-javascript",
6
6
  "sideEffects": false,
@@ -32,7 +32,7 @@
32
32
  "author": "Qase Team <support@qase.io>",
33
33
  "license": "Apache-2.0",
34
34
  "dependencies": {
35
- "qase-javascript-commons": "~2.3.0",
35
+ "qase-javascript-commons": "~2.3.3",
36
36
  "uuid": "^9.0.1",
37
37
  "@types/node": "^20.1.0",
38
38
  "@wdio/reporter": "^8.39.0",