cypress-qase-reporter 2.0.0-beta.4 → 2.0.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
@@ -4,11 +4,10 @@ Publish results simple and easy.
4
4
 
5
5
  ## How to install
6
6
 
7
- Qase Cypress reporter is currently in open beta stage for the version 2 series.
8
- To install the latest beta version, run:
7
+ To install the latest version, run:
9
8
 
10
9
  ```sh
11
- npm install -D cypress-qase-reporter@beta
10
+ npm install -D cypress-qase-reporter
12
11
  ```
13
12
 
14
13
  ## Updating from v1
package/changelog.md CHANGED
@@ -1,3 +1,22 @@
1
+ # cypress-qase-reporter@2.0.1
2
+
3
+ ## What's new
4
+
5
+ The reporter would mark the test as blocked if the test was skipped in Cypress.
6
+ Now, the reporter will mark the test as skipped.
7
+
8
+ # cypress-qase-reporter@2.0.0
9
+
10
+ ## What's new
11
+
12
+ This is the first release in the 2.x series of the Cypress reporter.
13
+ It brings new and more flexible configs, uploading results in parallel with running tests,
14
+ and other powerful features.
15
+
16
+ This changelog entry will be updated soon.
17
+ For more information about the new features and a guide for migration from v1, refer to the
18
+ [reporter documentation](https://github.com/qase-tms/qase-javascript/tree/main/qase-cypress#readme)
19
+
1
20
  # cypress-qase-reporter@2.0.0-beta.3
2
21
 
3
22
  Fixed an issue with multiple test runs created when Cypress is running
@@ -5,4 +24,4 @@ multiple tests in parallel.
5
24
 
6
25
  # cypress-qase-reporter@2.0.0-beta.2
7
26
 
8
- First major beta release for the version 2 series of the Qase Cypress reporter.
27
+ First major beta release for the version 2 series of the Qase Cypress reporter.
package/dist/reporter.js CHANGED
@@ -150,5 +150,5 @@ CypressQaseReporter.qaseIdRegExp = /\(Qase ID:? ([\d,]+)\)/;
150
150
  CypressQaseReporter.statusMap = {
151
151
  failed: qase_javascript_commons_1.TestStatusEnum.failed,
152
152
  passed: qase_javascript_commons_1.TestStatusEnum.passed,
153
- pending: qase_javascript_commons_1.TestStatusEnum.blocked,
153
+ pending: qase_javascript_commons_1.TestStatusEnum.skipped,
154
154
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress-qase-reporter",
3
- "version": "2.0.0-beta.4",
3
+ "version": "2.0.1",
4
4
  "description": "Qase Cypress Reporter",
5
5
  "homepage": "https://github.com/qase-tms/qase-javascript",
6
6
  "sideEffects": false,
@@ -41,10 +41,10 @@
41
41
  "test": "jest --passWithNoTests",
42
42
  "clean": "rm -rf dist"
43
43
  },
44
- "author": "Nikita Fedorov <nik333r@gmail.com>",
44
+ "author": "Qase Team <support@qase.io>",
45
45
  "license": "Apache-2.0",
46
46
  "dependencies": {
47
- "qase-javascript-commons": "^2.0.0-beta.10",
47
+ "qase-javascript-commons": "^2.0.0",
48
48
  "uuid": "^9.0.1"
49
49
  },
50
50
  "peerDependencies": {