dockest
Version:
Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.
11 lines (10 loc) • 361 B
TypeScript
import execa, { SyncOptions } from 'execa';
import { Runner } from '../@types';
interface Opts {
runner?: Runner;
logPrefix?: string;
logStdout?: boolean;
execaOpts?: SyncOptions<string>;
}
export declare const execaWrapper: (command: string, { runner, logPrefix, logStdout, execaOpts }?: Opts) => execa.ExecaSyncReturnValue<string>;
export {};