@qavajs/format-report-portal 0.11.0 → 0.12.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/CHANGELOG.MD CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.12.0
2
+ - added support of named attachments
3
+
1
4
  ## 0.11.0
2
5
  - added flag to print launch url
3
6
 
package/index.js CHANGED
@@ -267,7 +267,7 @@ class RPFormatter extends Formatter {
267
267
  };
268
268
  log = await this.rpClient.sendLog(testItem.tempId, {
269
269
  level: 'INFO',
270
- message: 'Attachment',
270
+ message: attachment.fileName || 'Attachment',
271
271
  time: startTime
272
272
  }, attachmentData);
273
273
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/format-report-portal",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "cucumber formatter for report portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "@reportportal/client-javascript": "^5.0.13"
24
24
  },
25
25
  "devDependencies": {
26
- "@cucumber/cucumber": "^9.4.0",
26
+ "@cucumber/cucumber": "^9.5.1",
27
27
  "@qavajs/cli": "^0.28.0",
28
28
  "@qavajs/memory": "^1.6.2"
29
29
  }