newman-reporter-qase 2.0.3 → 2.0.4

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,14 @@
1
+ # qase-newman@2.0.4
2
+
3
+ ## What's new
4
+
5
+ Resolved error when uploading results due to bad request:
6
+
7
+ ```log
8
+ Error: Error on uploading results: Bad request. Body:
9
+ {"message":"The execution.start time must be at least 1732623290. (and 1 more error)","errors":{"execution.start_time":["The execution.start time must be at least 1732623290."],"execution.end_time":["The execution.end time must be at least 1732623290."]}}
10
+ ```
11
+
1
12
  # qase-newman@2.0.3
2
13
 
3
14
  ## What's new
@@ -27,7 +38,7 @@ For more information about the new features and a guide for migration from v1, r
27
38
 
28
39
  ## What's new
29
40
 
30
- Add support for suites in test results.
41
+ Add support for suites in test results.
31
42
 
32
43
  # qase-newman@2.0.0-beta.1
33
44
 
package/dist/reporter.js CHANGED
@@ -135,8 +135,8 @@ class NewmanQaseReporter {
135
135
  author: null,
136
136
  execution: {
137
137
  status: qase_javascript_commons_1.TestStatusEnum.passed,
138
- start_time: 0,
139
- end_time: 0,
138
+ start_time: null,
139
+ end_time: null,
140
140
  duration: 0,
141
141
  stacktrace: null,
142
142
  thread: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newman-reporter-qase",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Qase TMS Newman Reporter",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",