2022-12-21 09:36:59 -08:00
|
|
|
# class: TestInfoError
|
2022-07-05 16:24:50 -08:00
|
|
|
* since: v1.10
|
2021-07-22 19:56:36 -07:00
|
|
|
* langs: js
|
|
|
|
|
|
|
|
Information about an error thrown during test execution.
|
|
|
|
|
2022-12-21 09:36:59 -08:00
|
|
|
## property: TestInfoError.message
|
2022-07-05 16:24:50 -08:00
|
|
|
* since: v1.10
|
2022-04-06 19:02:10 -07:00
|
|
|
- type: ?<[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 19:02:10 -07:00
|
|
|
Error message. Set when [Error] (or its subclass) has been thrown.
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-12-21 09:36:59 -08:00
|
|
|
## property: TestInfoError.stack
|
2022-07-05 16:24:50 -08:00
|
|
|
* since: v1.10
|
2022-04-06 19:02:10 -07:00
|
|
|
- type: ?<[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 19:02:10 -07:00
|
|
|
Error stack. Set when [Error] (or its subclass) has been thrown.
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-12-21 09:36:59 -08:00
|
|
|
## property: TestInfoError.value
|
2022-07-05 16:24:50 -08:00
|
|
|
* since: v1.10
|
2022-04-06 19:02:10 -07:00
|
|
|
- type: ?<[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 19:02:10 -07:00
|
|
|
The value that was thrown. Set when anything except the [Error] (or its subclass) has been thrown.
|