@wdio/testingbot-service 7.14.1 → 7.16.3
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.d.ts.map +1 -1
- package/build/launcher.js +3 -3
- package/build/service.js +1 -1
- package/package.json +6 -6
package/build/launcher.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"launcher.d.ts","sourceRoot":"","sources":["../src/launcher.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE7D,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAIpF,MAAM,CAAC,OAAO,OAAO,kBAAmB,YAAW,QAAQ,CAAC,eAAe;IACvE,OAAO,EAAE,iBAAiB,
|
|
1
|
+
{"version":3,"file":"launcher.d.ts","sourceRoot":"","sources":["../src/launcher.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE7D,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAIpF,MAAM,CAAC,OAAO,OAAO,kBAAmB,YAAW,QAAQ,CAAC,eAAe;IACvE,OAAO,EAAE,iBAAiB,CAAA;IAC1B,YAAY,EAAG,qBAAqB,CAAA;IACpC,MAAM,CAAC,EAAE,gBAAgB,CAAA;gBACZ,OAAO,EAAE,iBAAiB;IAIjC,SAAS,CAAE,MAAM,EAAE,OAAO,CAAC,UAAU,EAAE,YAAY,EAAE,YAAY,CAAC,kBAAkB;IAwC1F;;;OAGG;IACH,UAAU;CAOb"}
|
package/build/launcher.js
CHANGED
|
@@ -7,7 +7,7 @@ const perf_hooks_1 = require("perf_hooks");
|
|
|
7
7
|
const util_1 = require("util");
|
|
8
8
|
const testingbot_tunnel_launcher_1 = __importDefault(require("testingbot-tunnel-launcher"));
|
|
9
9
|
const logger_1 = __importDefault(require("@wdio/logger"));
|
|
10
|
-
const log = logger_1.default('@wdio/testingbot-service');
|
|
10
|
+
const log = (0, logger_1.default)('@wdio/testingbot-service');
|
|
11
11
|
class TestingBotLauncher {
|
|
12
12
|
constructor(options) {
|
|
13
13
|
this.options = options;
|
|
@@ -39,9 +39,9 @@ class TestingBotLauncher {
|
|
|
39
39
|
const entry = list.getEntries()[0];
|
|
40
40
|
log.info(`TestingBot tunnel successfully started after ${entry.duration}ms`);
|
|
41
41
|
});
|
|
42
|
-
obs.observe({ entryTypes: ['measure']
|
|
42
|
+
obs.observe({ entryTypes: ['measure'] });
|
|
43
43
|
perf_hooks_1.performance.mark('tbTunnelStart');
|
|
44
|
-
this.tunnel = await util_1.promisify(testingbot_tunnel_launcher_1.default)(this.tbTunnelOpts);
|
|
44
|
+
this.tunnel = await (0, util_1.promisify)(testingbot_tunnel_launcher_1.default)(this.tbTunnelOpts);
|
|
45
45
|
perf_hooks_1.performance.mark('tbTunnelEnd');
|
|
46
46
|
perf_hooks_1.performance.measure('bootTime', 'tbTunnelStart', 'tbTunnelEnd');
|
|
47
47
|
}
|
package/build/service.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const got_1 = __importDefault(require("got"));
|
|
7
7
|
const logger_1 = __importDefault(require("@wdio/logger"));
|
|
8
|
-
const log = logger_1.default('@wdio/testingbot-service');
|
|
8
|
+
const log = (0, logger_1.default)('@wdio/testingbot-service');
|
|
9
9
|
const jobDataProperties = ['name', 'tags', 'public', 'build', 'extra'];
|
|
10
10
|
class TestingBotService {
|
|
11
11
|
constructor(_options, _capabilities, _config) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/testingbot-service",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.16.3",
|
|
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",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"url": "https://github.com/webdriverio/webdriverio/issues"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@types/node": "^
|
|
27
|
-
"@wdio/logger": "7.
|
|
28
|
-
"@wdio/types": "7.
|
|
26
|
+
"@types/node": "^16.11.1",
|
|
27
|
+
"@wdio/logger": "7.16.0",
|
|
28
|
+
"@wdio/types": "7.16.3",
|
|
29
29
|
"got": "^11.0.2",
|
|
30
30
|
"testingbot-tunnel-launcher": "^1.1.7",
|
|
31
|
-
"webdriverio": "7.
|
|
31
|
+
"webdriverio": "7.16.3"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@wdio/cli": "^7.0.0"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"types": "./build/index.d.ts",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "23e2af933060e829f03d7518089c377571c654e3"
|
|
41
41
|
}
|