cypress-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 +8 -1
- package/dist/reporter.js +1 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
# cypress-qase-reporter@2.0.0
|
|
2
9
|
|
|
3
10
|
## What's new
|
|
@@ -17,4 +24,4 @@ multiple tests in parallel.
|
|
|
17
24
|
|
|
18
25
|
# cypress-qase-reporter@2.0.0-beta.2
|
|
19
26
|
|
|
20
|
-
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.
|
|
153
|
+
pending: qase_javascript_commons_1.TestStatusEnum.skipped,
|
|
154
154
|
};
|