testit-adapter-jest 2.0.0 → 2.0.1

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 +8 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -78,13 +78,13 @@ You can also specify options via cli arguments `jest --testEnvironment testit-ad
78
78
  Methods can be used to specify information about autotest.
79
79
 
80
80
  Description of metadata methods:
81
- - `testit.workItemIds` - linking an autotest to a test case
82
- - `testit.displayName` - name of the autotest in the Test IT system (can be replaced with documentation strings)
83
- - `testit.externalId` - ID of the autotest within the project in the Test IT System
84
- - `testit.title` - title in the autotest card
85
- - `testit.description` - description in the autotest card
86
- - `testit.labels` - tags in the work item
87
- - `testit.link` - links in the autotest card
81
+ - `testit.workItemIds` - a method that links autotests with manual tests. Receives the array of manual tests' IDs
82
+ - `testit.displayName` - internal autotest name (used in Test IT)
83
+ - `testit.externalId` - unique internal autotest ID (used in Test IT)
84
+ - `testit.title` - autotest name specified in the autotest card. If not specified, the name from the displayName method is used
85
+ - `testit.description` - autotest description specified in the autotest card
86
+ - `testit.labels` - tags listed in the autotest card
87
+ - `testit.link` - links listed in the autotest card
88
88
  - `testit.namespace` - directory in the TMS system (default - directory's name of test)
89
89
  - `testit.classname` - subdirectory in the TMS system (default - file's name of test)
90
90
 
@@ -92,6 +92,7 @@ Description of methods:
92
92
  - `testit.addLinks` - links in the autotest result
93
93
  - `testit.addAttachments` - uploading files in the autotest result
94
94
  - `testit.addMessage` - information about autotest in the autotest result
95
+ - `testit.step` - add step of autotest
95
96
 
96
97
  ### Examples
97
98
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testit-adapter-jest",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Jest adapter for Test IT",
5
5
  "main": "dist/testitEnvironment.js",
6
6
  "scripts": {
@@ -15,7 +15,7 @@
15
15
  "license": "ISC",
16
16
  "dependencies": {
17
17
  "debug": "^4.3.4",
18
- "testit-js-commons": "^2.0.0"
18
+ "testit-js-commons": "^2.0.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/debug": "^4.1.7",