testit-adapter-codecept 1.1.2 → 1.1.3
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/README.md
CHANGED
|
@@ -3,13 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
## Getting Started
|
|
5
5
|
|
|
6
|
-
### Compatibility
|
|
7
|
-
|
|
8
|
-
| Test IT | Adapter |
|
|
9
|
-
|---------|---------|
|
|
10
|
-
| 3.5 | 1.0 |
|
|
11
|
-
| 4.0 | 1.1 |
|
|
12
|
-
|
|
13
6
|
### Installation
|
|
14
7
|
```
|
|
15
8
|
npm install testit-adapter-codecept
|
|
@@ -132,6 +125,8 @@ Description of metadata methods:
|
|
|
132
125
|
- `description` - description in the autotest card
|
|
133
126
|
- `labels` - tags in the work item
|
|
134
127
|
- `link` - links in the autotest card
|
|
128
|
+
- `nameSpace` - directory in the TMS system
|
|
129
|
+
- `className` - subdirectory in the TMS system
|
|
135
130
|
|
|
136
131
|
Description of methods:
|
|
137
132
|
- `addLinks` - links in the autotest result
|
|
@@ -31,7 +31,9 @@ class TestsBuilder {
|
|
|
31
31
|
setup,
|
|
32
32
|
links: (_d = config === null || config === void 0 ? void 0 : config.links) !== null && _d !== void 0 ? _d : [],
|
|
33
33
|
teardown,
|
|
34
|
-
externalId: (_e = (0, use_hash_function_1.useDefaultHash)(test)) !== null && _e !== void 0 ? _e : (0, use_hash_function_1.useCompositeHash)(test)
|
|
34
|
+
externalId: (_e = (0, use_hash_function_1.useDefaultHash)(test)) !== null && _e !== void 0 ? _e : (0, use_hash_function_1.useCompositeHash)(test),
|
|
35
|
+
namespace: config === null || config === void 0 ? void 0 : config.nameSpace,
|
|
36
|
+
classname: config === null || config === void 0 ? void 0 : config.className
|
|
35
37
|
};
|
|
36
38
|
}
|
|
37
39
|
buildManySteps(steps = []) {
|
package/package.json
CHANGED
|
Binary file
|