diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index c527d0b680..ba413ea6e7 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -792,8 +792,6 @@ type LiteralUnion = T | (U & { zz_IGNORE_ME?: never }); * */ interface TestConfig { - skipAfterAnyFailure: boolean; - /** * Playwright Test supports running multiple test projects at the same time. See * [TestProject](https://playwright.dev/docs/api/class-testproject) for more information. @@ -1527,6 +1525,8 @@ interface TestConfig { total: number; }; + skipAfterAnyFailure: boolean; + /** * **NOTE** Use * [testConfig.snapshotPathTemplate](https://playwright.dev/docs/api/class-testconfig#test-config-snapshot-path-template) @@ -1842,6 +1842,8 @@ export type Metadata = { [key: string]: any }; * [TestConfig](https://playwright.dev/docs/api/class-testconfig) instead. */ export interface FullConfig { + skipAfterAnyFailure: boolean; + /** * List of resolved projects. */