fix(ct): import ct* flavour types from ct-core and then from pwt (#31642)
This commit is contained in:
parent
8021312c99
commit
6a9e60d6a1
2
packages/playwright-ct-core/index.d.ts
vendored
2
packages/playwright-ct-core/index.d.ts
vendored
|
|
@ -56,4 +56,4 @@ export function defineConfig(config: PlaywrightTestConfig, ...configs: Playwrigh
|
||||||
export function defineConfig<T>(config: PlaywrightTestConfig<T>, ...configs: PlaywrightTestConfig[]): PlaywrightTestConfig<T>;
|
export function defineConfig<T>(config: PlaywrightTestConfig<T>, ...configs: PlaywrightTestConfig[]): PlaywrightTestConfig<T>;
|
||||||
export function defineConfig<T, W>(config: PlaywrightTestConfig<T, W>, ...configs: PlaywrightTestConfig[]): PlaywrightTestConfig<T, W>;
|
export function defineConfig<T, W>(config: PlaywrightTestConfig<T, W>, ...configs: PlaywrightTestConfig[]): PlaywrightTestConfig<T, W>;
|
||||||
|
|
||||||
export { expect, devices } from 'playwright/test';
|
export { expect, devices, Locator } from 'playwright/test';
|
||||||
|
|
|
||||||
6
packages/playwright-ct-react/index.d.ts
vendored
6
packages/playwright-ct-react/index.d.ts
vendored
|
|
@ -14,8 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
import type { TestType, Locator } from '@playwright/experimental-ct-core';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
|
||||||
|
|
||||||
export interface MountOptions<HooksConfig> {
|
export interface MountOptions<HooksConfig> {
|
||||||
hooksConfig?: HooksConfig;
|
hooksConfig?: HooksConfig;
|
||||||
|
|
@ -33,5 +32,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult>;
|
): Promise<MountResult>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
6
packages/playwright-ct-react17/index.d.ts
vendored
6
packages/playwright-ct-react17/index.d.ts
vendored
|
|
@ -14,8 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
import type { TestType, Locator} from '@playwright/experimental-ct-core';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
|
||||||
|
|
||||||
export interface MountOptions<HooksConfig> {
|
export interface MountOptions<HooksConfig> {
|
||||||
hooksConfig?: HooksConfig;
|
hooksConfig?: HooksConfig;
|
||||||
|
|
@ -33,5 +32,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult>;
|
): Promise<MountResult>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
6
packages/playwright-ct-solid/index.d.ts
vendored
6
packages/playwright-ct-solid/index.d.ts
vendored
|
|
@ -14,8 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
import type { TestType, Locator } from '@playwright/experimental-ct-core';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
|
||||||
|
|
||||||
export interface MountOptions<HooksConfig> {
|
export interface MountOptions<HooksConfig> {
|
||||||
hooksConfig?: HooksConfig;
|
hooksConfig?: HooksConfig;
|
||||||
|
|
@ -33,5 +32,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult>;
|
): Promise<MountResult>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
6
packages/playwright-ct-svelte/index.d.ts
vendored
6
packages/playwright-ct-svelte/index.d.ts
vendored
|
|
@ -14,9 +14,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
|
||||||
import type { SvelteComponent, ComponentProps } from 'svelte/types/runtime';
|
import type { SvelteComponent, ComponentProps } from 'svelte/types/runtime';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
import type { TestType, Locator } from '@playwright/experimental-ct-core';
|
||||||
|
|
||||||
type ComponentSlot = string | string[];
|
type ComponentSlot = string | string[];
|
||||||
type ComponentSlots = Record<string, ComponentSlot> & { default?: ComponentSlot };
|
type ComponentSlots = Record<string, ComponentSlot> & { default?: ComponentSlot };
|
||||||
|
|
@ -44,5 +43,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult<Component>>;
|
): Promise<MountResult<Component>>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
6
packages/playwright-ct-vue/index.d.ts
vendored
6
packages/playwright-ct-vue/index.d.ts
vendored
|
|
@ -14,8 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
import type { TestType, Locator } from '@playwright/experimental-ct-core';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
|
||||||
|
|
||||||
type ComponentSlot = string | string[];
|
type ComponentSlot = string | string[];
|
||||||
type ComponentSlots = Record<string, ComponentSlot> & { default?: ComponentSlot };
|
type ComponentSlots = Record<string, ComponentSlot> & { default?: ComponentSlot };
|
||||||
|
|
@ -64,5 +63,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult<Component>>;
|
): Promise<MountResult<Component>>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
6
packages/playwright-ct-vue2/index.d.ts
vendored
6
packages/playwright-ct-vue2/index.d.ts
vendored
|
|
@ -14,8 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Locator } from 'playwright/test';
|
import type { TestType, Locator } from '@playwright/experimental-ct-core';
|
||||||
import type { TestType } from '@playwright/experimental-ct-core';
|
|
||||||
|
|
||||||
type Slot = string | string[];
|
type Slot = string | string[];
|
||||||
type ComponentSlots = Record<string, Slot> & { default?: Slot };
|
type ComponentSlots = Record<string, Slot> & { default?: Slot };
|
||||||
|
|
@ -64,5 +63,4 @@ export const test: TestType<{
|
||||||
): Promise<MountResult<Component>>;
|
): Promise<MountResult<Component>>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export { defineConfig, PlaywrightTestConfig } from '@playwright/experimental-ct-core';
|
export { defineConfig, PlaywrightTestConfig, expect, devices } from '@playwright/experimental-ct-core';
|
||||||
export { expect, devices } from 'playwright/test';
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue