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

7 lines (6 loc) 231 B
import { Network, NetworkCreateOptions } from "dockerode"; export interface NetworkClient { getById(id: string): Network; create(opts: NetworkCreateOptions): Promise<Network>; remove(network: Network): Promise<void>; }