dockest
Version:
Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.
12 lines (11 loc) • 471 B
TypeScript
import { DockestOpts, DockestService } from './@types';
export { DockestService } from './@types';
export { LOG_LEVEL as logLevel } from './constants';
export { execaWrapper as execa } from './utils/execa-wrapper';
export { sleep } from './utils/sleep';
export { sleepWithLog } from './utils/sleep-with-log';
export declare class Dockest {
private config;
constructor(opts?: Partial<DockestOpts>);
run: (dockestServices: DockestService[]) => Promise<void>;
}