@wdio/testingbot-service 7.20.8-alpha.219 → 7.20.8-alpha.504
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/build/launcher.js +3 -0
- package/build/service.js +10 -2
- package/package.json +7 -9
package/build/launcher.js
CHANGED
|
@@ -4,6 +4,9 @@ import testingbotTunnel from 'testingbot-tunnel-launcher';
|
|
|
4
4
|
import logger from '@wdio/logger';
|
|
5
5
|
const log = logger('@wdio/testingbot-service');
|
|
6
6
|
export default class TestingBotLauncher {
|
|
7
|
+
options;
|
|
8
|
+
tbTunnelOpts;
|
|
9
|
+
tunnel;
|
|
7
10
|
constructor(options) {
|
|
8
11
|
this.options = options;
|
|
9
12
|
}
|
package/build/service.js
CHANGED
|
@@ -3,12 +3,20 @@ import logger from '@wdio/logger';
|
|
|
3
3
|
const log = logger('@wdio/testingbot-service');
|
|
4
4
|
const jobDataProperties = ['name', 'tags', 'public', 'build', 'extra'];
|
|
5
5
|
export default class TestingBotService {
|
|
6
|
+
_options;
|
|
7
|
+
_capabilities;
|
|
8
|
+
_config;
|
|
9
|
+
_browser;
|
|
10
|
+
_isServiceEnabled;
|
|
11
|
+
_suiteTitle;
|
|
12
|
+
_tbSecret;
|
|
13
|
+
_tbUser;
|
|
14
|
+
_failures = 0;
|
|
15
|
+
_testCnt = 0;
|
|
6
16
|
constructor(_options, _capabilities, _config) {
|
|
7
17
|
this._options = _options;
|
|
8
18
|
this._capabilities = _capabilities;
|
|
9
19
|
this._config = _config;
|
|
10
|
-
this._failures = 0;
|
|
11
|
-
this._testCnt = 0;
|
|
12
20
|
this._tbUser = this._config.user;
|
|
13
21
|
this._tbSecret = this._config.key;
|
|
14
22
|
this._isServiceEnabled = Boolean(this._tbUser && this._tbSecret);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/testingbot-service",
|
|
3
|
-
"version": "7.20.8-alpha.
|
|
3
|
+
"version": "7.20.8-alpha.504+428a9d729",
|
|
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",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git://github.com/webdriverio/webdriverio.git"
|
|
13
|
+
"url": "git://github.com/webdriverio/webdriverio.git",
|
|
14
|
+
"directory": "packages/wdio-testingbot-service"
|
|
14
15
|
},
|
|
15
16
|
"keywords": [
|
|
16
17
|
"webdriver",
|
|
@@ -26,20 +27,17 @@
|
|
|
26
27
|
"types": "./build/index.d.ts",
|
|
27
28
|
"typeScriptVersion": "3.8.3",
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"@wdio/logger": "7.
|
|
30
|
-
"@wdio/types": "7.20.
|
|
30
|
+
"@wdio/logger": "7.20.8-alpha.504+428a9d729",
|
|
31
|
+
"@wdio/types": "7.20.8-alpha.504+428a9d729",
|
|
31
32
|
"got": "^12.1.0",
|
|
32
33
|
"testingbot-tunnel-launcher": "^1.1.7",
|
|
33
|
-
"webdriverio": "7.20.
|
|
34
|
+
"webdriverio": "7.20.8-alpha.504+428a9d729"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
37
|
"@types/node": "^18.0.0"
|
|
37
38
|
},
|
|
38
|
-
"peerDependencies": {
|
|
39
|
-
"@wdio/cli": "next"
|
|
40
|
-
},
|
|
41
39
|
"publishConfig": {
|
|
42
40
|
"access": "public"
|
|
43
41
|
},
|
|
44
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "428a9d729ae6231968a60908732fa3f607d195e9"
|
|
45
43
|
}
|