testit-adapter-cucumber 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -77,13 +77,13 @@ Cucumber tags can be used to specify information about autotest.
77
77
 
78
78
  > Only those specified above the `Scenario` are taken into account
79
79
 
80
- - `@ExternalId` - Unique identifier of autotest (Required)
81
- - `@Title` - Title that is displayed on autotest page
82
- - `@DisplayName` - Name that is displayed in autotests table
83
- - `@Description` - Autotest description
84
- - `@Links` - can be specified either in JSON (`@Link={"url":"http://google.com","hasInfo":true,"description":"GoogleDescription","title":"Google","type":"Defect"}`) or in text (`@Link=http://google.com`)
85
- - `@Labels` - Label that is going to be linked to autotest
86
- - `@WorkItemIds` - Work item's ID to which autotest is going to be linked
80
+ - `@ExternalId` - unique internal autotest ID (used in Test IT)
81
+ - `@Title` - autotest name specified in the autotest card. If not specified, the name from the displayName method is used
82
+ - `@DisplayName` - internal autotest name (used in Test IT)
83
+ - `@Description` - autotest description specified in the autotest card
84
+ - `@Links` - links listed in the autotest card (`@Link={"url":"http://google.com","hasInfo":true,"description":"GoogleDescription","title":"Google","type":"Defect"}`) or in text (`@Link=http://google.com`)
85
+ - `@Labels` - tags listed in the autotest card
86
+ - `@WorkItemIds` - a method that links autotests with manual tests. Receives the array of manual tests' IDs
87
87
  - `@NameSpace` - directory in the TMS system
88
88
  - `@ClassName` - subdirectory in the TMS system
89
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testit-adapter-cucumber",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Cucumber adapter for Test IT",
5
5
  "main": "dist/formatter.js",
6
6
  "scripts": {
@@ -22,7 +22,7 @@
22
22
  "dependencies": {
23
23
  "@cucumber/cucumber": "^7.3.1",
24
24
  "@cucumber/messages": "^17.1.1",
25
- "testit-js-commons": "^2.0.0"
25
+ "testit-js-commons": "^2.0.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@babel/preset-env": "^7.15.8",