Skip to content

Commit 41c57a2

Browse files
committed
update doc
1 parent e37f405 commit 41c57a2

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

docs/gherkin.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,23 @@ Special tags will add meta info to report.
1010
Example(in this example it will add several links to test):
1111
```gherkin
1212
@issue("ABC-001")
13-
@tms("ABC-002")
14-
@tms("ABC-003","Description__of__ticket")
15-
Scenario: should have several tms tags
16-
Given I log message "test"
13+
@tms("ABC-002")
14+
@tms("ABC-003","Description__of__ticket")
15+
Scenario: should have several tms tags
16+
Given I log message "test"
1717
```
1818

19-
Special tags are the same as allure interface items, see [interface](./interface.md)
19+
Special tags are the same as allure interface items, see [interface](./interface.md)
20+
21+
22+
**Note**
23+
When using `@bahmutov/cypress-esbuild-preprocessor` to preprocess feature files
24+
please update code to use globals:
25+
26+
```javascript
27+
const cucumberBundler = createBundler({
28+
define: { global: 'window' },
29+
plugins: [createEsbuildPlugin(config)],
30+
});
31+
```
32+
Example of setup is in progress

0 commit comments

Comments
 (0)