File tree 1 file changed +18
-5
lines changed
1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,23 @@ Special tags will add meta info to report.
10
10
Example(in this example it will add several links to test):
11
11
``` gherkin
12
12
@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"
17
17
```
18
18
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
You can’t perform that action at this time.
0 commit comments