@@ -178,18 +178,18 @@ Learn how to generate [test-signature.md](test-signature.md "mention") before us
178
178
| ` spec ` | ` string ` | Name of the spec file which the test belongs to. [ spec-files.md] ( spec-files.md " mention ") |
179
179
| ` machineId ` | ` string ` | ID of the machine which executed the test. |
180
180
| ` signature ` | ` string ` | Signature of the test [ test-signature.md] ( test-signature.md " mention ") |
181
- | ` title ` | ` Array<String> ` | Title of the test. [ See test title] ( https://docs.currents.dev/resources/api/api-resources/test-signature#test-title ) . |
181
+ | ` title ` | ` string[] ` | Title of the test. [ See test title] ( https://docs.currents.dev/resources/api/api-resources/test-signature#test-title ) . |
182
182
| ` testId ` | ` string ` | ID of the test as reporter by its framework. |
183
- | ` expectedStatus ` | ` String< failed \| passed \| pending \| skipped> ` | Spected status of the test. Only available for Playwright. |
184
- | ` status ` | ` String< failed \| passed \| pending \| skipped> ` | Final status of the test after the execution |
183
+ | ` expectedStatus ` | ` " failed" \| " passed" \| " pending" \| " skipped" ` | Expected status of the test. Only available for Playwright. |
184
+ | ` status ` | ` " failed" \| " passed" \| " pending" \| " skipped" ` | Final status of the test after the execution |
185
185
| ` framework ` | ` Framework ` | Information about the framework and reporter used for the test execution [ #framework] ( test-results.md#framework " mention ") |
186
186
| ` displayError ` | ` string ` | Latest error from the test execution |
187
187
| ` commit ` | ` Commit ` | Git commit information [ #commit] ( test-results.md#commit " mention ") |
188
- | ` createdAt ` | ` String (ISO Datetime) ` | Date of the test execution |
188
+ | ` createdAt ` | ` string (ISO 8601) ` | Date of the test execution |
189
189
| ` duration ` | ` number ` | Total duration of the test execution in milliseconds |
190
190
| ` flaky ` | ` boolean ` | Property that shows if the test is marked as flaky [ flaky-tests.md] ( ../../../dashboard/tests/flaky-tests.md " mention ") |
191
- | ` attempts ` | ` Array< Attempt> ` | List of test execution attempts [ #attempt] ( test-results.md#attempt " mention ") |
192
- | ` annotations ` | ` Array< Annotation> ` | List of test annotations [ #annotation] ( test-results.md#annotation " mention ") |
191
+ | ` attempts ` | ` Attempt[] ` | List of test execution attempts [ #attempt] ( test-results.md#attempt " mention ") |
192
+ | ` annotations ` | ` Annotation[] ` | List of test annotations [ #annotation] ( test-results.md#annotation " mention ") |
193
193
194
194
#### Commit
195
195
@@ -223,8 +223,8 @@ Learn how to generate [test-signature.md](test-signature.md "mention") before us
223
223
| Name | Type | Description |
224
224
| ----------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------- |
225
225
| ` attemptId ` | ` string ` | ID of the attempt |
226
- | ` state ` | ` Enum< failed \| passed \| pending \| skipped> ` | Status of the attempt |
227
- | ` startedAt ` | ` String (ISO Datetime) ` | Start date of the attempt |
226
+ | ` state ` | ` " failed" \| " passed" \| " pending" \| " skipped" ` | Status of the attempt |
227
+ | ` startedAt ` | ` string (ISO 8601) ` | Start date of the attempt |
228
228
| ` duration ` | ` number ` | Total duration of the attempt in milliseconds |
229
229
| ` error ` | ` Error ` | Error object of the attempt in case of failure [ #error] ( test-results.md#error " mention ") |
230
230
0 commit comments