@qavajs/format-report-portal 0.13.0 → 0.13.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## 0.13.2
2
+ - updated version to 0.13.2
3
+ - pull request template added to reduce human factor
4
+
5
+ ## 0.13.1
6
+ - fixed a missed bracket
7
+
1
8
  ## 0.13.0
2
9
  - changed an approach to distribute tags as attributes for suite and test entities
3
10
 
package/index.js CHANGED
@@ -243,7 +243,8 @@ class RPFormatter extends Formatter {
243
243
 
244
244
  formatTags(tags) {
245
245
  return tags.map(tag => '<code>' + tag.name + '</code>').join('')
246
-
246
+ }
247
+
247
248
  prepareTags(tags) {
248
249
  return tags.map(tag => tag.name)
249
250
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/format-report-portal",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "description": "cucumber formatter for report portal",
5
5
  "main": "index.js",
6
6
  "scripts": {