formatting
This commit is contained in:
parent
4ac8787ea0
commit
0c8b994a14
|
|
@ -28,11 +28,6 @@ Call log.
|
||||||
|
|
||||||
Error message. Set when [Error] (or its subclass) has been thrown.
|
Error message. Set when [Error] (or its subclass) has been thrown.
|
||||||
|
|
||||||
## property: TestError.message
|
|
||||||
* since: v1.10
|
|
||||||
- type: ?<[string]>
|
|
||||||
|
|
||||||
Error message. Set when [Error] (or its subclass) has been thrown.
|
|
||||||
## property: TestError.shortMessage
|
## property: TestError.shortMessage
|
||||||
* since: v1.49
|
* since: v1.49
|
||||||
- type: ?<[string]>
|
- type: ?<[string]>
|
||||||
|
|
|
||||||
1
packages/playwright/types/testReporter.d.ts
vendored
1
packages/playwright/types/testReporter.d.ts
vendored
|
|
@ -287,6 +287,7 @@ export interface JSONReportTest {
|
||||||
export interface JSONReportError {
|
export interface JSONReportError {
|
||||||
message: string;
|
message: string;
|
||||||
location?: Location;
|
location?: Location;
|
||||||
|
|
||||||
actual?: any;
|
actual?: any;
|
||||||
expected?: any;
|
expected?: any;
|
||||||
log?: Array<string>;
|
log?: Array<string>;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue