testplane
Version:
Tests framework based on mocha and wdio
10 lines (9 loc) • 327 B
TypeScript
import { Config } from "../config";
import type { Testplane } from "../testplane";
export type DevServerOpts = {
testplane: Testplane;
devServerConfig: Config["devServer"];
configPath: string;
};
export type InitDevServer = (opts: DevServerOpts) => Promise<void>;
export declare const initDevServer: InitDevServer;