newman-reporter-qase 2.1.0 → 2.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/changelog.md CHANGED
@@ -1,3 +1,10 @@
1
+ # qase-newman@2.1.1
2
+
3
+ ## What's new
4
+
5
+ Fixed an issue where parent suite hierarchy was not properly handled in test results. Now results correctly display the
6
+ full structure of suites.
7
+
1
8
  # qase-newman@2.1.0
2
9
 
3
10
  ## What's new
package/dist/reporter.js CHANGED
@@ -68,13 +68,13 @@ class NewmanQaseReporter {
68
68
  * @private
69
69
  */
70
70
  static getParentTitles(item) {
71
- const titles = [];
72
- if ('name' in item) {
73
- titles.push(String(item.name));
74
- }
71
+ let titles = [];
75
72
  const parent = item.parent();
76
73
  if (parent) {
77
- titles.concat(NewmanQaseReporter.getParentTitles(parent));
74
+ titles = titles.concat(NewmanQaseReporter.getParentTitles(parent));
75
+ }
76
+ if ('name' in item) {
77
+ titles.push(String(item.name));
78
78
  }
79
79
  return titles;
80
80
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newman-reporter-qase",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Qase TMS Newman Reporter",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",