@testomatio/reporter 0.8.0-beta.11 → 0.8.0-beta.12

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.
@@ -126,7 +126,7 @@ class GitHubPipe {
126
126
  }
127
127
 
128
128
  if (this.tests.length > 0) {
129
- body += "\n<details>\n<summary><h3>🐢 Slowest Tests</h3>\n\n"
129
+ body += "<details>\n<summary><h3>🐢 Slowest Tests</h3></summary>\n\n"
130
130
  body += this.tests.sort((a, b) => b?.run_time - a?.run_time).slice(0, 5).map(t => {
131
131
  return `* ${fullName(t)} (${parseFloat(t.run_time).toFixed(2)}ms)`
132
132
  }).join('\n')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "0.8.0-beta.11",
3
+ "version": "0.8.0-beta.12",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "repository": "git@github.com:testomatio/reporter.git",