@testcontainers/weaviate
Version:
Weaviate module for Testcontainers
11 lines (10 loc) • 459 B
TypeScript
import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers";
export declare class WeaviateContainer extends GenericContainer {
constructor(image: string);
start(): Promise<StartedWeaviateContainer>;
}
export declare class StartedWeaviateContainer extends AbstractStartedContainer {
constructor(startedTestContainer: StartedTestContainer);
getHttpHostAddress(): string;
getGrpcHostAddress(): string;
}