Skip to content

startMongoServer

@tsed/testcontainers-mongo

Usage

typescript
import { startMongoServer } from "@tsed/orm/testcontainers-mongo/src/types/services/ContainerUtils";

See /packages/orm/testcontainers-mongo/src/types/services/ContainerUtils.ts.

Overview

ts
function startMongoServer(image?: string): Promise<{
    container: StartedMongoDBContainer;
    url: string;
}>;

container

ts
container: StartedMongoDBContainer;

url

ts
url: string;

Released under the MIT License.