@wdio/spec-reporter 8.8.0 → 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/index.d.ts +4 -4
- package/build/index.js +4 -4
- package/package.json +4 -4
package/build/index.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
63
63
|
getResultDisplay(prefaceString?: string): string[];
|
|
64
64
|
/**
|
|
65
65
|
* Get the display for passing, failing and skipped
|
|
66
|
-
* @param {
|
|
66
|
+
* @param {string} duration Duration string
|
|
67
67
|
* @return {Array} Count display
|
|
68
68
|
*/
|
|
69
69
|
getCountDisplay(duration: string): string[];
|
|
@@ -79,19 +79,19 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
79
79
|
getOrderedSuites(): SuiteStats[];
|
|
80
80
|
/**
|
|
81
81
|
* Indent a suite based on where how it's nested
|
|
82
|
-
* @param {
|
|
82
|
+
* @param {string} uid Unique suite key
|
|
83
83
|
* @return {String} Spaces for indentation
|
|
84
84
|
*/
|
|
85
85
|
indent(uid: string): string;
|
|
86
86
|
/**
|
|
87
87
|
* Get a symbol based on state
|
|
88
|
-
* @param {
|
|
88
|
+
* @param {string} state State of a test
|
|
89
89
|
* @return {String} Symbol to display
|
|
90
90
|
*/
|
|
91
91
|
getSymbol(state?: keyof Symbols): string;
|
|
92
92
|
/**
|
|
93
93
|
* Get a color based on a given state
|
|
94
|
-
* @param {
|
|
94
|
+
* @param {string} state Test state
|
|
95
95
|
* @return {String} State color
|
|
96
96
|
*/
|
|
97
97
|
getColor(state?: string): "red" | "green" | "cyan" | "gray";
|
package/build/index.js
CHANGED
|
@@ -319,7 +319,7 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* Get the display for passing, failing and skipped
|
|
322
|
-
* @param {
|
|
322
|
+
* @param {string} duration Duration string
|
|
323
323
|
* @return {Array} Count display
|
|
324
324
|
*/
|
|
325
325
|
getCountDisplay(duration) {
|
|
@@ -395,7 +395,7 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
395
395
|
}
|
|
396
396
|
/**
|
|
397
397
|
* Indent a suite based on where how it's nested
|
|
398
|
-
* @param {
|
|
398
|
+
* @param {string} uid Unique suite key
|
|
399
399
|
* @return {String} Spaces for indentation
|
|
400
400
|
*/
|
|
401
401
|
indent(uid) {
|
|
@@ -404,7 +404,7 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* Get a symbol based on state
|
|
407
|
-
* @param {
|
|
407
|
+
* @param {string} state State of a test
|
|
408
408
|
* @return {String} Symbol to display
|
|
409
409
|
*/
|
|
410
410
|
getSymbol(state) {
|
|
@@ -412,7 +412,7 @@ export default class SpecReporter extends WDIOReporter {
|
|
|
412
412
|
}
|
|
413
413
|
/**
|
|
414
414
|
* Get a color based on a given state
|
|
415
|
-
* @param {
|
|
415
|
+
* @param {string} state Test state
|
|
416
416
|
* @return {String} State color
|
|
417
417
|
*/
|
|
418
418
|
getColor(state) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/spec-reporter",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.6",
|
|
4
4
|
"description": "A WebdriverIO plugin to report in spec style",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-spec-reporter",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"typeScriptVersion": "3.8.3",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@wdio/reporter": "8.8.
|
|
33
|
-
"@wdio/types": "8.8.
|
|
32
|
+
"@wdio/reporter": "8.8.6",
|
|
33
|
+
"@wdio/types": "8.8.6",
|
|
34
34
|
"chalk": "^5.1.2",
|
|
35
35
|
"easy-table": "^1.2.0",
|
|
36
36
|
"pretty-ms": "^7.0.0"
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "0db3b2f595ef834e6e01f58873dbde776dc08240"
|
|
42
42
|
}
|