@testomatio/reporter 0.3.15 → 0.3.16

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,7 @@
1
+ # 0.3.16
2
+
3
+ * CodeceptJS: fixed reporting tests with empty steps (on retry)
4
+
1
5
  # 0.3.15
2
6
 
3
7
  * Finish Run via API:
@@ -112,7 +112,7 @@ module.exports = (config) => {
112
112
  failedTests.push(id || title);
113
113
  const testId = parseTest(tags);
114
114
  const testObj = getTestAndMessage(title);
115
- if (err && err.stack && test.steps.length) {
115
+ if (err && err.stack && test.steps && test.steps.length) {
116
116
  err.stack = test.steps[test.steps.length - 1].line();
117
117
  }
118
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "repository": "git@github.com:testomatio/reporter.git",