2021-12-14 05:30:48 +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
|
|
|
|
*
|
2022-03-11 19:00:46 +03:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2021-12-14 05:30:48 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-05-06 22:02:07 +03:00
|
|
|
import type {
|
|
|
|
TestType,
|
|
|
|
PlaywrightTestArgs,
|
|
|
|
PlaywrightTestConfig as BasePlaywrightTestConfig,
|
|
|
|
PlaywrightTestOptions,
|
|
|
|
PlaywrightWorkerArgs,
|
|
|
|
PlaywrightWorkerOptions,
|
|
|
|
Locator,
|
|
|
|
} from '@playwright/test';
|
2022-05-04 01:48:46 +03:00
|
|
|
import type { InlineConfig } from 'vite';
|
|
|
|
|
2022-05-06 22:02:07 +03:00
|
|
|
export type PlaywrightTestConfig = Omit<BasePlaywrightTestConfig, 'use'> & {
|
2022-05-10 22:21:29 +03:00
|
|
|
use?: BasePlaywrightTestConfig['use'] & {
|
|
|
|
ctPort?: number,
|
|
|
|
ctTemplateDir?: string,
|
|
|
|
ctCacheDir?: string,
|
|
|
|
ctViteConfig?: InlineConfig
|
|
|
|
}
|
2022-05-06 22:02:07 +03:00
|
|
|
};
|
|
|
|
|
2022-09-22 07:14:20 +03:00
|
|
|
type JsonPrimitive = string | number | boolean | null;
|
|
|
|
type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
|
|
type JsonArray = JsonValue[];
|
|
|
|
type JsonObject = { [Key in string]?: JsonValue };
|
|
|
|
|
2022-08-16 20:47:33 +03:00
|
|
|
export interface MountOptions {
|
2022-09-22 07:14:20 +03:00
|
|
|
hooksConfig?: JsonObject;
|
2022-08-16 20:47:33 +03:00
|
|
|
}
|
|
|
|
|
2022-07-30 06:07:23 +03:00
|
|
|
interface MountResult extends Locator {
|
|
|
|
unmount(): Promise<void>;
|
2022-08-16 20:47:33 +03:00
|
|
|
rerender(component: JSX.Element): Promise<void>;
|
2022-07-30 06:07:23 +03:00
|
|
|
}
|
|
|
|
|
2022-07-12 23:42:50 +03:00
|
|
|
export interface ComponentFixtures {
|
2022-08-16 20:47:33 +03:00
|
|
|
mount(component: JSX.Element, options?: MountOptions): Promise<MountResult>;
|
2022-03-11 19:00:46 +03:00
|
|
|
}
|
|
|
|
|
2022-05-06 22:02:07 +03:00
|
|
|
export const test: TestType<
|
|
|
|
PlaywrightTestArgs & PlaywrightTestOptions & ComponentFixtures,
|
|
|
|
PlaywrightWorkerArgs & PlaywrightWorkerOptions>;
|
|
|
|
|
|
|
|
export { expect, devices } from '@playwright/test';
|