docs: more prominent note on tags being read-only (#32836)
Reference https://github.com/microsoft/playwright/issues/32828
This commit is contained in:
parent
d07f6cfc5c
commit
e8d08e8d1e
|
|
@ -216,7 +216,9 @@ Test function as passed to `test(title, testFunction)`.
|
||||||
|
|
||||||
Tags that apply to the test. Learn more about [tags](../test-annotations.md#tag-tests).
|
Tags that apply to the test. Learn more about [tags](../test-annotations.md#tag-tests).
|
||||||
|
|
||||||
Note that any changes made to this list while the test is running will not be visible to test reporters.
|
:::note
|
||||||
|
Any changes made to this list while the test is running will not be visible to test reporters.
|
||||||
|
:::
|
||||||
|
|
||||||
## property: TestInfo.testId
|
## property: TestInfo.testId
|
||||||
* since: v1.32
|
* since: v1.32
|
||||||
|
|
|
||||||
3
packages/playwright/types/test.d.ts
vendored
3
packages/playwright/types/test.d.ts
vendored
|
|
@ -8282,7 +8282,8 @@ export interface TestInfo {
|
||||||
/**
|
/**
|
||||||
* Tags that apply to the test. Learn more about [tags](https://playwright.dev/docs/test-annotations#tag-tests).
|
* Tags that apply to the test. Learn more about [tags](https://playwright.dev/docs/test-annotations#tag-tests).
|
||||||
*
|
*
|
||||||
* Note that any changes made to this list while the test is running will not be visible to test reporters.
|
* **NOTE** Any changes made to this list while the test is running will not be visible to test reporters.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
tags: Array<string>;
|
tags: Array<string>;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue