2022-06-03 03:37:43 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import type {
|
|
|
|
TestType,
|
|
|
|
PlaywrightTestArgs,
|
|
|
|
PlaywrightTestConfig as BasePlaywrightTestConfig,
|
|
|
|
PlaywrightTestOptions,
|
|
|
|
PlaywrightWorkerArgs,
|
|
|
|
PlaywrightWorkerOptions,
|
|
|
|
Locator,
|
|
|
|
} from '@playwright/test';
|
|
|
|
import type { InlineConfig } from 'vite';
|
|
|
|
|
|
|
|
export type PlaywrightTestConfig = Omit<BasePlaywrightTestConfig, 'use'> & {
|
|
|
|
use?: BasePlaywrightTestConfig['use'] & {
|
|
|
|
ctPort?: number,
|
|
|
|
ctTemplateDir?: string,
|
|
|
|
ctCacheDir?: string,
|
|
|
|
ctViteConfig?: InlineConfig
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-07-12 23:42:50 +03:00
|
|
|
export interface ComponentFixtures {
|
2022-06-03 03:37:43 +03:00
|
|
|
mount(component: JSX.Element): Promise<Locator>;
|
2022-07-13 18:41:20 +03:00
|
|
|
mount(component: any, options?: {
|
|
|
|
props?: { [key: string]: any },
|
|
|
|
slots?: { [key: string]: any },
|
|
|
|
on?: { [key: string]: Function },
|
|
|
|
hooksConfig: any,
|
|
|
|
}): Promise<Locator>;
|
|
|
|
mount<Props>(component: any, options: {
|
|
|
|
props: Props,
|
2022-06-03 03:37:43 +03:00
|
|
|
slots?: { [key: string]: any },
|
|
|
|
on?: { [key: string]: Function },
|
2022-07-12 19:37:33 +03:00
|
|
|
hooksConfig: any,
|
2022-06-03 03:37:43 +03:00
|
|
|
}): Promise<Locator>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const test: TestType<
|
|
|
|
PlaywrightTestArgs & PlaywrightTestOptions & ComponentFixtures,
|
|
|
|
PlaywrightWorkerArgs & PlaywrightWorkerOptions>;
|
|
|
|
|
|
|
|
export { expect, devices } from '@playwright/test';
|