dockest
Version:
Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.
6 lines (5 loc) • 306 B
TypeScript
import { DockestConfig } from '../../@types';
export declare const dockerComposeUp: ({ composeOpts: { alwaysRecreateDeps, build, forceRecreate, noBuild, noColor, noDeps, noRecreate, quietPull }, serviceName, }: {
composeOpts: DockestConfig['composeOpts'];
serviceName: string;
}) => Promise<void>;