@arghajit/dummy 0.3.19 → 0.3.28

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.
@@ -92,6 +92,7 @@ function mergeReports(shardDirs) {
92
92
  combinedRun.passed += run.passed || 0;
93
93
  combinedRun.failed += run.failed || 0;
94
94
  combinedRun.skipped += run.skipped || 0;
95
+ combinedRun.flaky = (combinedRun.flaky || 0) + (run.flaky || 0);
95
96
  combinedRun.duration += run.duration || 0;
96
97
 
97
98
  if (run.environment) {
@@ -228,7 +229,7 @@ function cleanupShardDirectories(shardDirs) {
228
229
 
229
230
  console.log(`\n✅ Merged report saved as ${OUTPUT_FILE}`);
230
231
  console.log(` Total tests: ${merged.run.totalTests}`);
231
- console.log(` Passed: ${merged.run.passed} | Failed: ${merged.run.failed} | Skipped: ${merged.run.skipped}`);
232
+ console.log(` Passed: ${merged.run.passed} | Failed: ${merged.run.failed} | Skipped: ${merged.run.skipped} | Flaky: ${merged.run.flaky}`);
232
233
 
233
234
  // 5. Cleanup Shard Directories
234
235
  cleanupShardDirectories(shardDirs);