UNPKG

@uuv/runner-commons

Version:
16 lines (15 loc) 618 B
import { UUVCliOptions } from "./options"; import cp from "child_process"; export declare class UUVCliHelper { /** * Print runner banner */ static printBanner(runnerName: string, currentVersion: string): void; static checkTargetCommand(): void; static checkTargetTestFiles(): void; private static getTargetCommand; static extractArgs(projectDir: string, defaultBrowser: any): Partial<UUVCliOptions>; static printVariables(options: Partial<UUVCliOptions>): void; static startIpcServer(): cp.ChildProcess; static stopIpcServer(ipcServerProcess: cp.ChildProcess): boolean; }