qase-javascript-commons 2.0.1 → 2.0.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.
package/changelog.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# qase-javascript-commons@2.0.2
|
|
2
|
+
|
|
3
|
+
## What's new
|
|
4
|
+
|
|
5
|
+
Add new step status `skipped` to the test result data.
|
|
6
|
+
Before this fix, the reporter didn't support the `skipped` status for test steps.
|
|
7
|
+
|
|
8
|
+
For ApiV1 the `skipped` status will be converted to `blocked` status.
|
|
9
|
+
For ApiV2 the `skipped` status will be converted to `skipped` status.
|
|
10
|
+
|
|
1
11
|
# qase-javascript-commons@2.0.1
|
|
2
12
|
|
|
3
13
|
## What's new
|
|
@@ -404,6 +404,7 @@ TestOpsReporter.stepStatusMap = {
|
|
|
404
404
|
[models_1.StepStatusEnum.passed]: qaseio_1.ResultStepStatus.PASSED,
|
|
405
405
|
[models_1.StepStatusEnum.failed]: qaseio_1.ResultStepStatus.FAILED,
|
|
406
406
|
[models_1.StepStatusEnum.blocked]: qaseio_1.ResultStepStatus.BLOCKED,
|
|
407
|
+
[models_1.StepStatusEnum.skipped]: qaseio_1.ResultStepStatus.SKIPPED,
|
|
407
408
|
};
|
|
408
409
|
/**
|
|
409
410
|
* @type {Record<StepStatusEnum, ResultStepStatus>}
|
|
@@ -412,4 +413,5 @@ TestOpsReporter.stepStatusMapV1 = {
|
|
|
412
413
|
[models_1.StepStatusEnum.passed]: qaseio_1.TestStepResultCreateStatusEnum.PASSED,
|
|
413
414
|
[models_1.StepStatusEnum.failed]: qaseio_1.TestStepResultCreateStatusEnum.FAILED,
|
|
414
415
|
[models_1.StepStatusEnum.blocked]: qaseio_1.TestStepResultCreateStatusEnum.BLOCKED,
|
|
416
|
+
[models_1.StepStatusEnum.skipped]: qaseio_1.TestStepResultCreateStatusEnum.BLOCKED,
|
|
415
417
|
};
|