You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| rerunOf | UUID of launch you want to rerun. If not specified, report portal will update the latest launch with the same name|
50
70
| reportHooks |*Default: false.* Determines report before and after hooks or not. |
@@ -112,7 +132,7 @@ describe('suite',()=>{
112
132
```
113
133
#### Report attributes for steps and suites
114
134
115
-
**addAttributes (*attributes*)**. Add attributes(tags) to the current test/suite. Should be called inside of corresponding test or suite.</br>
135
+
**addAttributes (*attributes*)**. Add attributes(tags) to the current test/suite. Should be called inside of corresponding test or suite.</br>
116
136
*attributes* is array of pairs of key and value:
117
137
```javascript
118
138
[{
@@ -141,7 +161,7 @@ describe('suite',()=>{
141
161
142
162
#### Integration with Sauce Labs
143
163
144
-
To integrate with Sauce Labs just add attributes:
164
+
To integrate with Sauce Labs just add attributes:
145
165
146
166
```javascript
147
167
[{
@@ -155,9 +175,9 @@ To integrate with Sauce Labs just add attributes:
155
175
156
176
#### Report description for steps and suites
157
177
158
-
**setDescription (*description*)**. Set text description to the current test/suite. Should be called inside of corresponding test or suite.</br>
178
+
**setDescription (*description*)**. Set text description to the current test/suite. Should be called inside of corresponding test or suite.</br>
159
179
160
-
Mocha doesn't allow functional calls directly into describe section. You can call setDescription inside of before/after hooks to set description to the corresponding suite.
180
+
Mocha doesn't allow functional calls directly into describe section. You can call setDescription inside of before/after hooks to set description to the corresponding suite.
161
181
162
182
**Example:**
163
183
```javascript
@@ -175,9 +195,9 @@ describe('suite',()=>{
175
195
176
196
#### Report test case id for steps and suites
177
197
178
-
**setTestCaseId (*testCaseId*)**. Set test case id to the current test/suite. Should be called inside of corresponding test or suite.</br>
198
+
**setTestCaseId (*testCaseId*)**. Set test case id to the current test/suite. Should be called inside of corresponding test or suite.</br>
179
199
180
-
Mocha doesn't allow functional calls directly into describe section. You can call setTestCaseId inside of before/after hooks to set test case id to the corresponding suite.
200
+
Mocha doesn't allow functional calls directly into describe section. You can call setTestCaseId inside of before/after hooks to set test case id to the corresponding suite.
0 commit comments