playwright-bdd
Version:
BDD Testing with Playwright runner
19 lines • 787 B
TypeScript
/**
* Some playwright types.
*/
import { PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions, TestInfo, TestType } from '@playwright/test';
import { Location as PlaywrightLocation } from '@playwright/test/reporter';
export type KeyValue = {
[key: string]: any;
};
export type TestTypeCommon = TestType<KeyValue, KeyValue>;
export type PwBuiltInFixturesWorker = PlaywrightWorkerArgs & PlaywrightWorkerOptions;
export type PwBuiltInFixturesTest = PlaywrightTestArgs & PlaywrightTestOptions;
export type PwAttachment = TestInfo['attachments'][0];
export { PlaywrightLocation };
export type DescribeConfigureOptions = {
mode?: 'default' | 'parallel' | 'serial';
retries?: number;
timeout?: number;
};
//# sourceMappingURL=types.d.ts.map