testit-adapter-cucumber 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
@@ -138,6 +138,14 @@ Feature: Tags
138
138
  ```
139
139
 
140
140
  #### Parameterized test
141
+
142
+ > [!WARNING]
143
+ > When linking a parameterized autotest to a parameterized test case, please consider the problematic points:
144
+ > - 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
145
+ > - Running a parameterized test case, TMS expects the results of all related autotests with all the parameters specified in the test case table
146
+ > - 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
147
+ > - TMS expects a complete **textual** match of the name and value of the parameters of the test case table with the autotest parameters
148
+
141
149
  ```
142
150
  Feature: Rule
143
151
  Tests that use Rule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testit-adapter-cucumber",
3
- "version": "3.7.1",
3
+ "version": "3.7.3",
4
4
  "description": "Cucumber adapter for Test IT",
5
5
  "main": "dist/formatter.js",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "@cucumber/cucumber": "^7.3.1",
25
25
  "@cucumber/messages": "^17.1.1",
26
- "testit-js-commons": "3.7.1"
26
+ "testit-js-commons": "3.7.3"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/preset-env": "^7.15.8",