jest-qase-reporter 2.0.0 → 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/changelog.md CHANGED
@@ -1,3 +1,11 @@
1
+ # jest-qase-reporter@2.0.1
2
+
3
+ ## What's new
4
+
5
+ Fixed a bug when a test was marked as skipped.
6
+ This reporter has uploaded this test as blocked.
7
+ Right now the reporter will upload this test as skipped.
8
+
1
9
  # jest-qase-reporter@2.0.0
2
10
 
3
11
  ## What's new
@@ -24,4 +32,4 @@ The v2 series of the Jest reporter has significant interface changes:
24
32
  * New import path.
25
33
  * New configuration data scheme.
26
34
 
27
- See the README for reference and instructions on upgrading from v1.
35
+ See the README for reference and instructions on upgrading from v1.
package/dist/reporter.js CHANGED
@@ -107,7 +107,7 @@ JestQaseReporter.statusMap = {
107
107
  failed: qase_javascript_commons_1.TestStatusEnum.failed,
108
108
  skipped: qase_javascript_commons_1.TestStatusEnum.skipped,
109
109
  disabled: qase_javascript_commons_1.TestStatusEnum.disabled,
110
- pending: qase_javascript_commons_1.TestStatusEnum.blocked,
110
+ pending: qase_javascript_commons_1.TestStatusEnum.skipped,
111
111
  todo: qase_javascript_commons_1.TestStatusEnum.disabled,
112
112
  focused: qase_javascript_commons_1.TestStatusEnum.passed,
113
113
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jest-qase-reporter",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Qase TMS Jest Reporter",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",