@testcontainers/arangodb
Version:
ArangoDB module for Testcontainers
18 lines (17 loc) • 678 B
TypeScript
import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers";
export declare class ArangoDBContainer extends GenericContainer {
private password;
constructor(image: string, password?: string);
withPassword(password: string): this;
start(): Promise<StartedArangoContainer>;
}
export declare class StartedArangoContainer extends AbstractStartedContainer {
private readonly password;
private readonly host;
private readonly port;
constructor(startedTestContainer: StartedTestContainer, password: string);
getTcpUrl(): string;
getHttpUrl(): string;
getPassword(): string;
getUsername(): string;
}