docs: fix types

This commit is contained in:
Lukas Bockstaller 2024-03-04 16:22:22 +01:00
parent fc202cd288
commit 8e02ef2f12
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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.