2021-07-22 19:56:36 -07:00
|
|
|
# class: TestError
|
|
|
|
* langs: js
|
|
|
|
|
|
|
|
Information about an error thrown during test execution.
|
|
|
|
|
|
|
|
## property: TestError.message
|
2022-04-06 13:36:20 -07:00
|
|
|
- type: <[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 13:36:20 -07:00
|
|
|
Optional error message. Set when [Error] (or its subclass) has been thrown.
|
2021-07-22 19:56:36 -07:00
|
|
|
|
|
|
|
## property: TestError.stack
|
2022-04-06 13:36:20 -07:00
|
|
|
- type: <[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 13:36:20 -07:00
|
|
|
Optional error stack. Set when [Error] (or its subclass) has been thrown.
|
2021-07-22 19:56:36 -07:00
|
|
|
|
|
|
|
## property: TestError.value
|
2022-04-06 13:36:20 -07:00
|
|
|
- type: <[string]>
|
2021-07-22 19:56:36 -07:00
|
|
|
|
2022-04-06 13:36:20 -07:00
|
|
|
Optional value that was thrown. Set when anything except the [Error] (or its subclass) has been thrown.
|