testit-adapter-mocha 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
@@ -96,13 +96,13 @@ Methods and properties can be used to specify information about autotest.
96
96
  ### Properties
97
97
 
98
98
  Description of metadata properties:
99
- - `this.workItemsIds` - linking an autotest to a test case
100
- - `this.displayName` - name of the autotest in the Test IT system
101
- - `this.externalId` - External ID of the autotest within the project in the Test IT system
102
- - `this.title` - title in the autotest card
103
- - `this.description` - description in the autotest card
104
- - `this.labels` - labels in the autotest card
105
- - `this.links` - links in the autotest card
99
+ - `this.workItemsIds` - a method that links autotests with manual tests. Receives the array of manual tests' IDs
100
+ - `this.displayName` - internal autotest name (used in Test IT)
101
+ - `this.externalId` - unique internal autotest ID (used in Test IT)
102
+ - `this.title` - autotest name specified in the autotest card. If not specified, the name from the displayName method is used
103
+ - `this.description` - autotest description specified in the autotest card
104
+ - `this.labels` - tags listed in the autotest card
105
+ - `this.links` - links listed in the autotest card
106
106
  - `this.nameSpace` - directory in the TMS system (default - directory's name of test)
107
107
  - `this.className` - subdirectory in the TMS system (default - file's name of test)
108
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testit-adapter-mocha",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Mocha adapter for Test IT",
5
5
  "main": "lib/reporter.js",
6
6
  "types": "lib/types.d.ts",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "mocha": "^10.2.0",
27
- "testit-js-commons": "^2.0.0"
27
+ "testit-js-commons": "^2.0.2"
28
28
  },
29
29
  "files": [
30
30
  "lib"