@wdio/concise-reporter 9.12.6 → 9.14.0
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 +1 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +2 -1
- package/package.json +4 -4
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type SuiteStats, type RunnerStats } from '@wdio/reporter';
|
|
2
2
|
import WDIOReporter from '@wdio/reporter';
|
|
3
3
|
import type { Reporters } from '@wdio/types';
|
|
4
4
|
export default class ConciseReporter extends WDIOReporter {
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAClF,OAAO,YAAY,MAAM,gBAAgB,CAAA;AAGzC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAE5C,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,YAAY;IAErD,OAAO,CAAC,UAAU,CAAe;IACjC,OAAO,CAAC,OAAO,CAAmB;IAClC,OAAO,CAAC,YAAY,CAAgB;gBAExB,OAAO,EAAE,SAAS,CAAC,OAAO;IAKtC,YAAY,CAAE,KAAK,EAAE,UAAU,GAAG,IAAI;IAItC,UAAU,CAAE,KAAK,EAAE,UAAU,GAAG,IAAI;IAIpC,UAAU;IAIV,WAAW,CAAE,MAAM,EAAE,WAAW,GAAG,IAAI;IAIvC;;;OAGG;IACH,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAYtC;;;OAGG;IACH,eAAe;IASf;;;OAGG;IACH,iBAAiB;IAgBjB;;;OAGG;IACH,gBAAgB;IAYhB;;;;;OAKG;IACH,kBAAkB,CAAE,IAAI,EAAE,WAAW,CAAC,YAAY;CAqBrD"}
|
package/build/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
+
import { getBrowserName } from "@wdio/reporter";
|
|
2
3
|
import WDIOReporter from "@wdio/reporter";
|
|
3
4
|
import chalk from "chalk";
|
|
4
5
|
var ConciseReporter = class extends WDIOReporter {
|
|
@@ -82,7 +83,7 @@ ${output.join("\n")}
|
|
|
82
83
|
*/
|
|
83
84
|
getEnviromentCombo(caps) {
|
|
84
85
|
const device = caps.deviceName || caps["appium:deviceName"] || caps.device;
|
|
85
|
-
const browser = caps
|
|
86
|
+
const browser = getBrowserName(caps);
|
|
86
87
|
const version = caps.browserVersion || caps.version || caps["appium:platformVersion"] || caps.browser_version;
|
|
87
88
|
const platform = caps.os ? caps.os + " " + caps.os_version : caps.platform || caps.platformName;
|
|
88
89
|
if (device) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/concise-reporter",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.14.0",
|
|
4
4
|
"description": "A concise reporter for WebdriverIO",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-concise-reporter",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
},
|
|
32
32
|
"typeScriptVersion": "3.8.3",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@wdio/reporter": "9.
|
|
35
|
-
"@wdio/types": "9.
|
|
34
|
+
"@wdio/reporter": "9.14.0",
|
|
35
|
+
"@wdio/types": "9.14.0",
|
|
36
36
|
"chalk": "^5.0.1",
|
|
37
37
|
"pretty-ms": "^9.0.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f8e62f63eb087a06556e8c85e042403da0e4485e"
|
|
43
43
|
}
|