UNPKG

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) 509 B
import { DockestConfig, DockestService } from '../../@types'; export declare const bootstrap: ({ composeFile, dockestServices, dumpErrors, exitHandler, runMode, mutables, perfStart, }: { composeFile: DockestConfig['composeFile']; dockestServices: DockestService[]; dumpErrors: DockestConfig['dumpErrors']; exitHandler: DockestConfig['exitHandler']; runMode: DockestConfig['runMode']; mutables: DockestConfig['mutables']; perfStart: DockestConfig['perfStart']; }) => Promise<void>;