docs: fix types
This commit is contained in:
parent
fc202cd288
commit
8e02ef2f12
|
|
@ -212,7 +212,7 @@ Test function as passed to `test(title, testFunction)`.
|
|||
|
||||
## property: TestInfo.tags
|
||||
* since: v1.43
|
||||
- type: <[string]>
|
||||
- type: <[Array]<[string]>>
|
||||
|
||||
Tags that apply to the tests.
|
||||
|
||||
|
|
|
|||
2
packages/playwright/types/test.d.ts
vendored
2
packages/playwright/types/test.d.ts
vendored
|
|
@ -2315,7 +2315,7 @@ export interface TestInfo {
|
|||
/**
|
||||
* Tags that apply to the tests.
|
||||
*/
|
||||
tags: string[];
|
||||
tags: Array<string>;
|
||||
|
||||
/**
|
||||
* Test id matching the test case id in the reporter API.
|
||||
|
|
|
|||
Loading…
Reference in a new issue