@wdio/testingbot-service 8.8.2 → 8.8.6
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/service.d.ts +6 -6
- package/build/service.js +6 -6
- package/package.json +4 -4
package/build/service.d.ts
CHANGED
|
@@ -15,18 +15,18 @@ export default class TestingBotService implements Services.ServiceInstance {
|
|
|
15
15
|
before(caps: unknown, specs: unknown, browser: WebdriverIO.Browser | WebdriverIO.MultiRemoteBrowser): void;
|
|
16
16
|
/**
|
|
17
17
|
* Before suite
|
|
18
|
-
* @param {
|
|
18
|
+
* @param {object} suite Suite
|
|
19
19
|
*/
|
|
20
20
|
beforeSuite(suite: Frameworks.Suite): void;
|
|
21
21
|
/**
|
|
22
22
|
* Before test
|
|
23
|
-
* @param {
|
|
23
|
+
* @param {object} test Test
|
|
24
24
|
*/
|
|
25
25
|
beforeTest(test: Frameworks.Test): void;
|
|
26
26
|
afterSuite(suite: Frameworks.Suite): void;
|
|
27
27
|
/**
|
|
28
28
|
* After test
|
|
29
|
-
* @param {
|
|
29
|
+
* @param {object} test Test
|
|
30
30
|
*/
|
|
31
31
|
afterTest(test: Frameworks.Test, context: any, results: Frameworks.TestResult): void;
|
|
32
32
|
/**
|
|
@@ -35,7 +35,7 @@ export default class TestingBotService implements Services.ServiceInstance {
|
|
|
35
35
|
/**
|
|
36
36
|
* Before feature
|
|
37
37
|
* @param {string} uri
|
|
38
|
-
* @param {
|
|
38
|
+
* @param {object} feature
|
|
39
39
|
*/
|
|
40
40
|
beforeFeature(uri: unknown, feature: {
|
|
41
41
|
name: string;
|
|
@@ -43,8 +43,8 @@ export default class TestingBotService implements Services.ServiceInstance {
|
|
|
43
43
|
/**
|
|
44
44
|
* Before scenario
|
|
45
45
|
* @param {string} uri
|
|
46
|
-
* @param {
|
|
47
|
-
* @param {
|
|
46
|
+
* @param {object} feature
|
|
47
|
+
* @param {object} scenario
|
|
48
48
|
*/
|
|
49
49
|
beforeScenario(world: Frameworks.World): void;
|
|
50
50
|
/**
|
package/build/service.js
CHANGED
|
@@ -26,14 +26,14 @@ export default class TestingBotService {
|
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* Before suite
|
|
29
|
-
* @param {
|
|
29
|
+
* @param {object} suite Suite
|
|
30
30
|
*/
|
|
31
31
|
beforeSuite(suite) {
|
|
32
32
|
this._suiteTitle = suite.title;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* Before test
|
|
36
|
-
* @param {
|
|
36
|
+
* @param {object} test Test
|
|
37
37
|
*/
|
|
38
38
|
beforeTest(test) {
|
|
39
39
|
if (!this._isServiceEnabled || !this._browser) {
|
|
@@ -66,7 +66,7 @@ export default class TestingBotService {
|
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
68
|
* After test
|
|
69
|
-
* @param {
|
|
69
|
+
* @param {object} test Test
|
|
70
70
|
*/
|
|
71
71
|
afterTest(test, context, results) {
|
|
72
72
|
if (!results.passed) {
|
|
@@ -79,7 +79,7 @@ export default class TestingBotService {
|
|
|
79
79
|
/**
|
|
80
80
|
* Before feature
|
|
81
81
|
* @param {string} uri
|
|
82
|
-
* @param {
|
|
82
|
+
* @param {object} feature
|
|
83
83
|
*/
|
|
84
84
|
beforeFeature(uri, feature) {
|
|
85
85
|
if (!this._isServiceEnabled || !this._browser) {
|
|
@@ -91,8 +91,8 @@ export default class TestingBotService {
|
|
|
91
91
|
/**
|
|
92
92
|
* Before scenario
|
|
93
93
|
* @param {string} uri
|
|
94
|
-
* @param {
|
|
95
|
-
* @param {
|
|
94
|
+
* @param {object} feature
|
|
95
|
+
* @param {object} scenario
|
|
96
96
|
*/
|
|
97
97
|
beforeScenario(world) {
|
|
98
98
|
if (!this._isServiceEnabled || !this._browser) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/testingbot-service",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.6",
|
|
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",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"typeScriptVersion": "3.8.3",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@wdio/logger": "8.6.6",
|
|
34
|
-
"@wdio/types": "8.8.
|
|
34
|
+
"@wdio/types": "8.8.6",
|
|
35
35
|
"got": "^12.1.0",
|
|
36
36
|
"testingbot-tunnel-launcher": "^1.1.7",
|
|
37
|
-
"webdriverio": "8.8.
|
|
37
|
+
"webdriverio": "8.8.6"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^18.0.0"
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "0db3b2f595ef834e6e01f58873dbde776dc08240"
|
|
46
46
|
}
|