fix(playwright-ct-core): added missing exported test type
This commit is contained in:
parent
7f6f17d1c3
commit
b42fcbcb64
2
packages/playwright-ct-core/index.d.ts
vendored
2
packages/playwright-ct-core/index.d.ts
vendored
|
|
@ -38,6 +38,8 @@ export type TestType<ComponentFixtures> = BaseTestType<
|
|||
PlaywrightWorkerArgs & PlaywrightWorkerOptions
|
||||
>;
|
||||
|
||||
export const test: TestType<ComponentFixtures>;
|
||||
|
||||
export function defineConfig(config: PlaywrightTestConfig): PlaywrightTestConfig;
|
||||
export function defineConfig<T>(config: PlaywrightTestConfig<T>): PlaywrightTestConfig<T>;
|
||||
export function defineConfig<T, W>(config: PlaywrightTestConfig<T, W>): PlaywrightTestConfig<T, W>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue