docs: fix the api review typos (#31071)
This commit is contained in:
parent
5708148496
commit
f97d87ea5a
|
|
@ -189,7 +189,7 @@ All responses returned by [`method: APIRequestContext.get`] and similar methods
|
||||||
* since: v1.45
|
* since: v1.45
|
||||||
- `reason` <[string]>
|
- `reason` <[string]>
|
||||||
|
|
||||||
The reason to be reported to the operations interrupted by the context disposure.
|
The reason to be reported to the operations interrupted by the context disposal.
|
||||||
|
|
||||||
## async method: APIRequestContext.fetch
|
## async method: APIRequestContext.fetch
|
||||||
* since: v1.16
|
* since: v1.16
|
||||||
|
|
|
||||||
|
|
@ -443,7 +443,7 @@ Test files that took more than `threshold` milliseconds are considered slow, and
|
||||||
* since: v1.45
|
* since: v1.45
|
||||||
- type: ?<[boolean]>
|
- type: ?<[boolean]>
|
||||||
|
|
||||||
Whether to skip entries from `.gitignore` when searching for test files. By default, if neither [`property: TestConfig.testDir`] nor [`property: TestProject.testDir`] are explicitely specified, Playwright will ignore any test files matching `.gitignore` entries. This option allows to override that behavior.
|
Whether to skip entries from `.gitignore` when searching for test files. By default, if neither [`property: TestConfig.testDir`] nor [`property: TestProject.testDir`] are explicitly specified, Playwright will ignore any test files matching `.gitignore` entries.
|
||||||
|
|
||||||
## property: TestConfig.retries
|
## property: TestConfig.retries
|
||||||
* since: v1.10
|
* since: v1.10
|
||||||
|
|
|
||||||
2
packages/playwright-core/types/types.d.ts
vendored
2
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -15877,7 +15877,7 @@ export interface APIRequestContext {
|
||||||
*/
|
*/
|
||||||
dispose(options?: {
|
dispose(options?: {
|
||||||
/**
|
/**
|
||||||
* The reason to be reported to the operations interrupted by the context disposure.
|
* The reason to be reported to the operations interrupted by the context disposal.
|
||||||
*/
|
*/
|
||||||
reason?: string;
|
reason?: string;
|
||||||
}): Promise<void>;
|
}): Promise<void>;
|
||||||
|
|
|
||||||
5
packages/playwright/types/test.d.ts
vendored
5
packages/playwright/types/test.d.ts
vendored
|
|
@ -1374,9 +1374,8 @@ interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
|
||||||
/**
|
/**
|
||||||
* Whether to skip entries from `.gitignore` when searching for test files. By default, if neither
|
* Whether to skip entries from `.gitignore` when searching for test files. By default, if neither
|
||||||
* [testConfig.testDir](https://playwright.dev/docs/api/class-testconfig#test-config-test-dir) nor
|
* [testConfig.testDir](https://playwright.dev/docs/api/class-testconfig#test-config-test-dir) nor
|
||||||
* [testProject.testDir](https://playwright.dev/docs/api/class-testproject#test-project-test-dir) are explicitely
|
* [testProject.testDir](https://playwright.dev/docs/api/class-testproject#test-project-test-dir) are explicitly
|
||||||
* specified, Playwright will ignore any test files matching `.gitignore` entries. This option allows to override that
|
* specified, Playwright will ignore any test files matching `.gitignore` entries.
|
||||||
* behavior.
|
|
||||||
*/
|
*/
|
||||||
respectGitIgnore?: boolean;
|
respectGitIgnore?: boolean;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue