@wdio/reporter 6.1.14 → 6.1.23

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.
Files changed (2) hide show
  1. package/build/index.js +2 -2
  2. package/package.json +2 -2
package/build/index.js CHANGED
@@ -144,7 +144,7 @@ class WDIOReporter extends _events.default {
144
144
  this.runnerStat.complete();
145
145
  this.onRunnerEnd(this.runnerStat);
146
146
  });
147
- this.on('client:command', payload => {
147
+ this.on('client:beforeCommand', payload => {
148
148
  if (!currentTest) {
149
149
  return;
150
150
  }
@@ -153,7 +153,7 @@ class WDIOReporter extends _events.default {
153
153
  type: 'command'
154
154
  }));
155
155
  });
156
- this.on('client:result', payload => {
156
+ this.on('client:afterCommand', payload => {
157
157
  if (!currentTest) {
158
158
  return;
159
159
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/reporter",
3
- "version": "6.1.14",
3
+ "version": "6.1.23",
4
4
  "description": "A WebdriverIO utility to help reporting all events",
5
5
  "author": "Christian Bromann <christian@saucelabs.com>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-reporter",
@@ -39,5 +39,5 @@
39
39
  "fs-extra": "^9.0.0"
40
40
  },
41
41
  "types": "reporter.d.ts",
42
- "gitHead": "1db0b8de0f2efd9e63bf76b01fe01f7e9985f03f"
42
+ "gitHead": "849a89ba604ccd5d17d928032675a098cfe298da"
43
43
  }