testit-adapter-codecept 3.7.1 → 3.7.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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -189,6 +189,14 @@ Scenario(
189
189
  ```
190
190
 
191
191
  #### Parameterized test
192
+
193
+ > [!WARNING]
194
+ > When linking a parameterized autotest to a parameterized test case, please consider the problematic points:
195
+ > - In TMS test cases have a table with parameters, but autotests do not. They are not equal entities, so there may be incompatibility in terms of parameters
196
+ > - Running a parameterized test case, TMS expects the results of all related autotests with all the parameters specified in the test case table
197
+ > - In TMS, the parameters are limited to the string type, so the adapter transmits absolutely all the autotest parameters as a string. This implies the following problematic point for the test case table
198
+ > - TMS expects a complete **textual** match of the name and value of the parameters of the test case table with the autotest parameters
199
+
192
200
  ```ts
193
201
  const data = new DataTable(['target', 'element']);
194
202
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testit-adapter-codecept",
3
- "version": "3.7.1",
3
+ "version": "3.7.3",
4
4
  "description": "Codecept adapter for Test IT",
5
5
  "keywords": [],
6
6
  "author": {
@@ -15,7 +15,7 @@
15
15
  "watch": "tsc -p tsconfig.json -w"
16
16
  },
17
17
  "dependencies": {
18
- "testit-js-commons": "3.7.1"
18
+ "testit-js-commons": "3.7.3"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@codeceptjs/configure": "^0.10.0",