diff --git a/docs/src/api/class-apirequestcontext.md b/docs/src/api/class-apirequestcontext.md index 0d2be68109..7101d1996d 100644 --- a/docs/src/api/class-apirequestcontext.md +++ b/docs/src/api/class-apirequestcontext.md @@ -189,7 +189,7 @@ All responses returned by [`method: APIRequestContext.get`] and similar methods * since: v1.45 - `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 * since: v1.16 diff --git a/docs/src/test-api/class-testconfig.md b/docs/src/test-api/class-testconfig.md index 85fbd3e86f..93a3c25cab 100644 --- a/docs/src/test-api/class-testconfig.md +++ b/docs/src/test-api/class-testconfig.md @@ -443,7 +443,7 @@ Test files that took more than `threshold` milliseconds are considered slow, and * since: v1.45 - 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 * since: v1.10 diff --git a/packages/playwright-core/types/types.d.ts b/packages/playwright-core/types/types.d.ts index 0f88ed92c5..6757e3b79c 100644 --- a/packages/playwright-core/types/types.d.ts +++ b/packages/playwright-core/types/types.d.ts @@ -15877,7 +15877,7 @@ export interface APIRequestContext { */ 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; }): Promise; diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index 59ae5256b7..3d68c341e8 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -1374,9 +1374,8 @@ interface TestConfig { /** * 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 - * [testProject.testDir](https://playwright.dev/docs/api/class-testproject#test-project-test-dir) are explicitely - * specified, Playwright will ignore any test files matching `.gitignore` entries. This option allows to override that - * behavior. + * [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. */ respectGitIgnore?: boolean;