@qavajs/format-report-portal 0.14.0 → 0.14.2
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/CHANGELOG.MD +6 -3
- package/README.MD +2 -2
- package/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.MD
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
## 0.14.2
|
|
2
|
+
- fixed issue with undefined/null tags that prevents starting launch
|
|
3
|
+
|
|
4
|
+
## 0.14.1
|
|
5
|
+
- updated rp-client package
|
|
6
|
+
|
|
1
7
|
## 0.14.0
|
|
2
8
|
- added config parameter for placing tags to attributes or description (default)
|
|
3
|
-
|
|
4
|
-
## 0.13.2
|
|
5
|
-
- updated version to 0.13.2
|
|
6
9
|
- pull request template added to reduce human factor
|
|
7
10
|
|
|
8
11
|
## 0.13.1
|
package/README.MD
CHANGED
|
@@ -11,7 +11,7 @@ add formatter to config.js
|
|
|
11
11
|
module.exports = {
|
|
12
12
|
default: {
|
|
13
13
|
format: [
|
|
14
|
-
'@qavajs/format-report-portal'
|
|
14
|
+
['@qavajs/format-report-portal', 'report/rp.out']
|
|
15
15
|
],
|
|
16
16
|
formatOptions: {
|
|
17
17
|
rpConfig: {
|
|
@@ -26,7 +26,7 @@ module.exports = {
|
|
|
26
26
|
mode: 'DEFAULT',
|
|
27
27
|
retry: 1, // number of retries to send result to report portal (default - 1)
|
|
28
28
|
ignoreErrors: false, // ignore RP errors (default: false)
|
|
29
|
-
showLaunchURL: true // log report portal launch link,
|
|
29
|
+
showLaunchURL: true, // log report portal launch link,
|
|
30
30
|
tagsAsAttributes: true // (default: false → tags go to description)
|
|
31
31
|
},
|
|
32
32
|
}
|
package/index.js
CHANGED
|
@@ -56,7 +56,7 @@ class RPFormatter extends Formatter {
|
|
|
56
56
|
name: this.rpConfig.launch,
|
|
57
57
|
startTime: this.rpClient.helpers.now(),
|
|
58
58
|
description: this.rpConfig.description,
|
|
59
|
-
attributes: this.rpConfig.tags,
|
|
59
|
+
attributes: this.rpConfig.tags?.filter(tag => tag),
|
|
60
60
|
mode: this.rpConfig.mode,
|
|
61
61
|
debug: this.rpConfig.debug
|
|
62
62
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qavajs/format-report-portal",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "cucumber formatter for report portal",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/qavajs/format-report-portal#readme",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@reportportal/client-javascript": "^5.0.
|
|
24
|
+
"@reportportal/client-javascript": "^5.0.15"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@cucumber/cucumber": "^
|
|
28
|
-
"@qavajs/cli": "^0.
|
|
27
|
+
"@cucumber/cucumber": "^10.0.1",
|
|
28
|
+
"@qavajs/cli": "^0.32.1",
|
|
29
29
|
"@qavajs/memory": "^1.6.2",
|
|
30
30
|
"jest": "^29.7.0"
|
|
31
31
|
}
|