@wdio/testingbot-service 8.0.0-alpha.508 → 8.0.0-alpha.512

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/README.md +4 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -15,12 +15,12 @@ Instructions on how to install `WebdriverIO` can be found [here.](https://webdri
15
15
 
16
16
  ## Configuration
17
17
 
18
- In order to use the service you need to set `user` and `key` in your `wdio.conf.js` file, and set the `host` option to `hub.testingbot.com`. If you want to use [TestingBot Tunnel](https://testingbot.com/support/other/tunnel)
19
- you just need to set `tbTunnel: true`.
18
+ In order to use the service you need to set `user` and `key` in your `wdio.conf.js` file, and set the `hostname` option to `hub.testingbot.com`. If you want to use [TestingBot Tunnel](https://testingbot.com/support/other/tunnel)
19
+ you need to set `tbTunnel: true`.
20
20
 
21
21
  ```js
22
22
  // wdio.conf.js
23
- exports.config
23
+ export const config = {
24
24
  // ...
25
25
  user: process.env.TB_KEY,
26
26
  key: process.env.TB_SECRET,
@@ -35,7 +35,7 @@ exports.config
35
35
 
36
36
  ## Options
37
37
 
38
- In order to authorize to the TestingBot service your config needs to contain a [`user`](https://webdriver.io/docs/options#user) and [`key`](https://webdriver.io/docs/options#key) option.
38
+ To authorize the TestingBot service your config needs to contain a [`user`](https://webdriver.io/docs/options#user) and [`key`](https://webdriver.io/docs/options#key) option.
39
39
 
40
40
  ### tbTunnel
41
41
  If true it runs the TestingBot Tunnel and opens a secure connection between a TestingBot Virtual Machine running your browser tests.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/testingbot-service",
3
- "version": "8.0.0-alpha.508+2d9d5b271",
3
+ "version": "8.0.0-alpha.512+fca9082b6",
4
4
  "description": "A WebdriverIO service that provides a better integration into TestingBot",
5
5
  "author": "Jochen Delabie <info@testingbot.com>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-testingbot-service",
@@ -27,11 +27,11 @@
27
27
  "types": "./build/index.d.ts",
28
28
  "typeScriptVersion": "3.8.3",
29
29
  "dependencies": {
30
- "@wdio/logger": "8.0.0-alpha.508+2d9d5b271",
31
- "@wdio/types": "8.0.0-alpha.508+2d9d5b271",
30
+ "@wdio/logger": "8.0.0-alpha.512+fca9082b6",
31
+ "@wdio/types": "8.0.0-alpha.512+fca9082b6",
32
32
  "got": "^12.1.0",
33
33
  "testingbot-tunnel-launcher": "^1.1.7",
34
- "webdriverio": "8.0.0-alpha.508+2d9d5b271"
34
+ "webdriverio": "8.0.0-alpha.512+fca9082b6"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^18.0.0"
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "2d9d5b2719056b8772d690d42656ab9e7c12d715"
42
+ "gitHead": "fca9082b61da2bbceedf7c68897d07f59f715f0a"
43
43
  }