playwright-slack-report-burak 2.0.4 → 2.0.5

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,7 +92,7 @@ class ResultsParser {
92
92
  // Write the updated summary back to the file for the current node
93
93
  fs.writeFileSync(nodeSummaryFile, JSON.stringify(nodeSummary, null, 2));
94
94
 
95
- console.log('current shard index', this.shardIndex, 'total shard count', this.totalShardCount);
95
+ console.log('current shard index', this.shardIndex, 'type:', typeof this.shardIndex, 'total shard count', this.totalShardCount, 'type:', typeof this.totalShardCount);
96
96
  if (this.shardIndex === 0 && this.totalShardCount > 1) {
97
97
  console.log('Fetching all artifacts...');
98
98
  await this.fetchAllArtifacts();
package/package.json CHANGED
@@ -30,7 +30,7 @@
30
30
  "lint-fix": "npx eslint . --ext .ts --fix"
31
31
  },
32
32
  "name": "playwright-slack-report-burak",
33
- "version": "2.0.4",
33
+ "version": "2.0.5",
34
34
  "main": "index.js",
35
35
  "types": "dist/index.d.ts",
36
36
  "repository": "git@github.com:ryanrosello-og/playwright-slack-report.git",