@azure/microsoft-playwright-testing
Version:
Package to integrate your Playwright test suite with Microsoft Playwright Testing service
13 lines • 428 B
TypeScript
import type { PlaywrightServiceAdditionalOptions, OsType } from "./types";
declare class PlaywrightServiceConfig {
serviceOs: OsType;
runId: string;
timeout: number;
slowMo: number;
exposeNetwork: string;
runName: string;
constructor();
setOptions: (options?: PlaywrightServiceAdditionalOptions) => void;
}
export { PlaywrightServiceConfig };
//# sourceMappingURL=playwrightServiceConfig.d.ts.map