Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mmisty committed Nov 5, 2023
1 parent e37f405 commit 41c57a2
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions docs/gherkin.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,23 @@ Special tags will add meta info to report.
Example(in this example it will add several links to test):
```gherkin
@issue("ABC-001")
@tms("ABC-002")
@tms("ABC-003","Description__of__ticket")
Scenario: should have several tms tags
Given I log message "test"
@tms("ABC-002")
@tms("ABC-003","Description__of__ticket")
Scenario: should have several tms tags
Given I log message "test"
```

Special tags are the same as allure interface items, see [interface](./interface.md)
Special tags are the same as allure interface items, see [interface](./interface.md)


**Note**
When using `@bahmutov/cypress-esbuild-preprocessor` to preprocess feature files
please update code to use globals:

```javascript
const cucumberBundler = createBundler({
define: { global: 'window' },
plugins: [createEsbuildPlugin(config)],
});
```
Example of setup is in progress

0 comments on commit 41c57a2

Please sign in to comment.