webdriverio 6.1.0 → 6.1.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.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  WebdriverIO
2
2
  ===========
3
3
 
4
- > Next-gen browser automation test framework for Node.js
4
+ > Next-gen browser and mobile automation test framework for Node.js
5
5
 
6
6
  This package provides and easy to manage API and a lot of syntactical sugar on top of the WebDriver specification. You can use WebdriverIO as a standalone package or via a testrunner using [`@wdio/cli`](https://webdriver.io/docs/clioptions.html). WebdriverIO allows to run tests locally using the WebDriver or Chrome DevTools protocol as well as remote user agents using cloud providers like [Sauce Labs](https://saucelabs.com/).
7
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webdriverio",
3
- "description": "Next-gen browser automation test automation framework for Node.js",
4
- "version": "6.1.0",
3
+ "description": "Next-gen browser and mobile automation test framework for Node.js",
4
+ "version": "6.1.5",
5
5
  "homepage": "https://webdriver.io",
6
6
  "author": "Christian Bromann <christian@saucelabs.com>",
7
7
  "license": "MIT",
@@ -55,13 +55,13 @@
55
55
  "test:unit": "jest"
56
56
  },
57
57
  "dependencies": {
58
- "@wdio/config": "6.0.16",
58
+ "@wdio/config": "6.1.2",
59
59
  "@wdio/logger": "6.0.16",
60
60
  "@wdio/repl": "6.1.0",
61
61
  "@wdio/utils": "6.1.0",
62
- "archiver": "^3.0.0",
62
+ "archiver": "^4.0.1",
63
63
  "css-value": "^0.0.1",
64
- "devtools": "6.1.0",
64
+ "devtools": "6.1.3",
65
65
  "grapheme-splitter": "^1.0.2",
66
66
  "lodash.clonedeep": "^4.5.0",
67
67
  "lodash.isobject": "^3.0.2",
@@ -70,7 +70,7 @@
70
70
  "resq": "^1.6.0",
71
71
  "rgb2hex": "^0.1.0",
72
72
  "serialize-error": "^6.0.0",
73
- "webdriver": "6.1.0"
73
+ "webdriver": "6.1.4"
74
74
  },
75
- "gitHead": "15034d0acef9a6de046df31f60850023cb52bce9"
75
+ "gitHead": "99a7346049e9409d9ecbc9bbdf82629a68486654"
76
76
  }
@@ -148,6 +148,17 @@ declare namespace WebdriverIO {
148
148
  * with the reporter name and the second element an object with reporter options.
149
149
  */
150
150
  reporters?: (string | object)[];
151
+ /**
152
+ * Determines in which interval the reporter should check if they are synchronised
153
+ * if they report their logs asynchronously (e.g. if logs are streamed to a 3rd
154
+ * party vendor).
155
+ */
156
+ reporterSyncInterval?: number;
157
+ /**
158
+ * Determines the maximum time reporters have to finish uploading all their logs
159
+ * until an error is being thrown by the testrunner.
160
+ */
161
+ reporterSyncTimeout?: number;
151
162
  /**
152
163
  * Services take over a specific job you don't want to take care of. They enhance
153
164
  * your test setup with almost no effort.