@testcontainers/chromadb
Version:
ChromaDB module for Testcontainers
11 lines (10 loc) • 444 B
TypeScript
import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers";
export declare class ChromaDBContainer extends GenericContainer {
constructor(image: string);
start(): Promise<StartedChromaDBContainer>;
}
export declare class StartedChromaDBContainer extends AbstractStartedContainer {
private readonly host;
constructor(startedTestContainer: StartedTestContainer);
getHttpUrl(): string;
}