fix types
Signed-off-by: Alex Schwartz <alexschwartz01@gmail.com>
This commit is contained in:
parent
a417629b2c
commit
37d396284f
6
packages/playwright/types/test.d.ts
vendored
6
packages/playwright/types/test.d.ts
vendored
|
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue