UNPKG

testcontainers

Version:

Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container

8 lines (7 loc) 380 B
import { ComposeDownOptions, ComposeOptions } from "../container-runtime"; import { DownedDockerComposeEnvironment } from "./downed-docker-compose-environment"; export declare class StoppedDockerComposeEnvironment { private readonly options; constructor(options: ComposeOptions); down(options?: Partial<ComposeDownOptions>): Promise<DownedDockerComposeEnvironment>; }