fix types

Signed-off-by: Alex Schwartz <alexschwartz01@gmail.com>
This commit is contained in:
Alex Schwartz 2025-02-21 18:59:04 -05:00 committed by GitHub
parent a417629b2c
commit 37d396284f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -792,8 +792,6 @@ type LiteralUnion<T extends U, U = string> = T | (U & { zz_IGNORE_ME?: never });
* *
*/ */
interface TestConfig<TestArgs = {}, WorkerArgs = {}> { interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
skipAfterAnyFailure: boolean;
/** /**
* Playwright Test supports running multiple test projects at the same time. See * Playwright Test supports running multiple test projects at the same time. See
* [TestProject](https://playwright.dev/docs/api/class-testproject) for more information. * [TestProject](https://playwright.dev/docs/api/class-testproject) for more information.
@ -1527,6 +1525,8 @@ interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
total: number; total: number;
}; };
skipAfterAnyFailure: boolean;
/** /**
* **NOTE** Use * **NOTE** Use
* [testConfig.snapshotPathTemplate](https://playwright.dev/docs/api/class-testconfig#test-config-snapshot-path-template) * [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. * [TestConfig](https://playwright.dev/docs/api/class-testconfig) instead.
*/ */
export interface FullConfig<TestArgs = {}, WorkerArgs = {}> { export interface FullConfig<TestArgs = {}, WorkerArgs = {}> {
skipAfterAnyFailure: boolean;
/** /**
* List of resolved projects. * List of resolved projects.
*/ */