UNPKG

testplane

Version:

Tests framework based on mocha and wdio

13 lines (12 loc) 421 B
/// <reference types="node" /> /// <reference types="node" /> /// <reference types="node" /> import type { ChildProcess } from "child_process"; import type { SupportedBrowser } from "./utils"; export declare const runBrowserDriver: (browserName: SupportedBrowser, browserVersion: string, { debug }?: { debug?: boolean | undefined; }) => Promise<{ gridUrl: string; process: ChildProcess; port: number; }>;