vitest-qase-reporter 1.0.3 → 1.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,9 @@
1
+ # qase-vitest@1.0.4
2
+
3
+ ## What's new
4
+
5
+ - Fixed an issue with multi-threaded test runs.
6
+
1
7
  # qase-vitest@1.0.3
2
8
 
3
9
  ## What's new
package/dist/index.js CHANGED
@@ -75,8 +75,8 @@ class VitestQaseReporter {
75
75
  });
76
76
  }
77
77
  // Set execution details
78
- testResult.execution.start_time = diagnostic?.startTime ? diagnostic.startTime / 1000 : null;
79
- testResult.execution.end_time = diagnostic?.startTime ? diagnostic.startTime / 1000 + diagnostic.duration : null;
78
+ testResult.execution.start_time = null;
79
+ testResult.execution.end_time = null;
80
80
  testResult.execution.duration = Math.round(diagnostic?.duration || 0);
81
81
  // Create error object for status determination
82
82
  let error = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest-qase-reporter",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Qase TMS Vitest Reporter",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",