@testomatio/reporter 1.6.13 → 1.6.14

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/lib/client.js CHANGED
@@ -65,7 +65,7 @@ class Client {
65
65
  try {
66
66
  const filterPipe = this.pipes.find(p => p.constructor.name.toLowerCase() === `${pipe.toLowerCase()}pipe`);
67
67
 
68
- if (!filterPipe.isEnabled) {
68
+ if (!filterPipe?.isEnabled) {
69
69
  // TODO:for the future for the another pipes
70
70
  console.warn(
71
71
  APP_PREFIX,
package/lib/pipe/html.js CHANGED
@@ -60,6 +60,8 @@ class HtmlPipe {
60
60
  // empty
61
61
  }
62
62
 
63
+ async prepareRun() {}
64
+
63
65
  updateRun() {
64
66
  // empty
65
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "typings": "typings/index.d.ts",