fix(playwright-ct-core): added missing exported test type

This commit is contained in:
Jan Molak 2024-03-11 15:17:36 +00:00
parent 7f6f17d1c3
commit b42fcbcb64

View file

@ -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>;