dockest
Version:
Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.
19 lines (18 loc) • 625 B
TypeScript
import { DockestConfig, Runner } from './@types';
import { DockerEventType } from './run/bootstrap/create-docker-event-emitter';
export interface Payload {
runner?: Runner;
error?: Error | string;
event?: DockerEventType;
}
export declare class BaseError extends Error {
static DockestConfig: DockestConfig;
payload: Payload;
constructor(message: string, payload?: Payload);
}
export declare class DockestError extends BaseError {
constructor(message: string, payload?: Payload);
}
export declare class ConfigurationError extends BaseError {
constructor(message: string, payload?: Payload);
}