From b42fcbcb641ec1755075628efe4c28d2ffd26e7b Mon Sep 17 00:00:00 2001 From: Jan Molak <1089173+jan-molak@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:17:36 +0000 Subject: [PATCH] fix(playwright-ct-core): added missing exported test type --- packages/playwright-ct-core/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/playwright-ct-core/index.d.ts b/packages/playwright-ct-core/index.d.ts index 2474bb792b..55c1a5e322 100644 --- a/packages/playwright-ct-core/index.d.ts +++ b/packages/playwright-ct-core/index.d.ts @@ -38,6 +38,8 @@ export type TestType = BaseTestType< PlaywrightWorkerArgs & PlaywrightWorkerOptions >; +export const test: TestType; + export function defineConfig(config: PlaywrightTestConfig): PlaywrightTestConfig; export function defineConfig(config: PlaywrightTestConfig): PlaywrightTestConfig; export function defineConfig(config: PlaywrightTestConfig): PlaywrightTestConfig;