fix: typing error
This commit is contained in:
parent
a22db4fca7
commit
fc202cd288
|
|
@ -81,7 +81,7 @@ export class TestInfoImpl implements TestInfo {
|
|||
readonly titlePath: string[];
|
||||
readonly file: string;
|
||||
readonly line: number;
|
||||
readonly tags: string[]|undefined;
|
||||
readonly tags: string[];
|
||||
readonly column: number;
|
||||
readonly fn: Function;
|
||||
expectedStatus: TestStatus;
|
||||
|
|
|
|||
5
packages/playwright/types/test.d.ts
vendored
5
packages/playwright/types/test.d.ts
vendored
|
|
@ -2312,6 +2312,11 @@ export interface TestInfo {
|
|||
*/
|
||||
status?: "passed"|"failed"|"timedOut"|"skipped"|"interrupted";
|
||||
|
||||
/**
|
||||
* Tags that apply to the tests.
|
||||
*/
|
||||
tags: string[];
|
||||
|
||||
/**
|
||||
* Test id matching the test case id in the reporter API.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue