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) 180 B
import { Readable } from "stream"; type Options = { trim: boolean; }; export declare const streamToString: (stream: Readable, options?: Options) => Promise<string>; export {};