@wdio/allure-reporter 8.10.7 → 8.11.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/reporter.js +1 -2
- package/package.json +3 -3
package/build/reporter.js
CHANGED
|
@@ -6,7 +6,7 @@ import { AllureReporterState } from './state.js';
|
|
|
6
6
|
import { getTestStatus, isEmpty, isMochaEachHooks, getErrorFromFailedTest, isMochaAllHooks, getLinkByTemplate, isScreenshotCommand, getSuiteLabels, setHistoryId, } from './utils.js';
|
|
7
7
|
import { events } from './constants.js';
|
|
8
8
|
import { TYPE as DescriptionType } from './types.js';
|
|
9
|
-
class AllureReporter extends WDIOReporter {
|
|
9
|
+
export default class AllureReporter extends WDIOReporter {
|
|
10
10
|
_allure;
|
|
11
11
|
_capabilities;
|
|
12
12
|
_isMultiremote;
|
|
@@ -635,4 +635,3 @@ class AllureReporter extends WDIOReporter {
|
|
|
635
635
|
static addAllureId = addAllureId;
|
|
636
636
|
static step = step;
|
|
637
637
|
}
|
|
638
|
-
export default AllureReporter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/allure-reporter",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.11.0",
|
|
4
4
|
"description": "A WebdriverIO reporter plugin to create Allure Test Reports",
|
|
5
5
|
"author": "Boris Osipov <osipov.boris@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-allure-reporter",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@types/node": "^20.1.0",
|
|
43
|
-
"@wdio/reporter": "8.
|
|
43
|
+
"@wdio/reporter": "8.11.0",
|
|
44
44
|
"@wdio/types": "8.10.4",
|
|
45
45
|
"allure-js-commons": "^2.0.0",
|
|
46
46
|
"csv-stringify": "^6.0.4",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "6fa7ae486537cbd3f6dd9e3bcc1812eb0acc6262"
|
|
53
53
|
}
|