From 41c57a2572dbb0276f0cdc03ceb00200beeeee86 Mon Sep 17 00:00:00 2001 From: mmisty Date: Sun, 5 Nov 2023 15:43:59 +0300 Subject: [PATCH] update doc --- docs/gherkin.md | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/docs/gherkin.md b/docs/gherkin.md index 08e2bdb9..c951669a 100644 --- a/docs/gherkin.md +++ b/docs/gherkin.md @@ -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) \ No newline at end of file +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 \ No newline at end of file