UNPKG

testplane

Version:

Tests framework based on mocha and wdio

7 lines (6 loc) 340 B
import { LimitedPool } from "./limited-pool"; import { PerBrowserLimitedPool } from "./per-browser-limited-pool"; import { Config } from "../config"; import { AsyncEmitter } from "../events"; export type BrowserPool = LimitedPool | PerBrowserLimitedPool; export declare const create: (config: Config, emitter: AsyncEmitter) => BrowserPool;