@testcontainers/gcloud
Version:
GCloud module for Testcontainers
15 lines (14 loc) • 670 B
TypeScript
import { AbstractStartedContainer, StartedTestContainer } from "testcontainers";
import { AbstractGcloudEmulator } from "./abstract-gcloud-emulator";
export declare class FirestoreEmulatorContainer extends AbstractGcloudEmulator {
constructor(image: string);
start(): Promise<StartedFirestoreEmulatorContainer>;
}
export declare class StartedFirestoreEmulatorContainer extends AbstractStartedContainer {
constructor(startedTestContainer: StartedTestContainer);
/**
* @return a <code>host:port</code> pair corresponding to the address on which the emulator is
* reachable from the test host machine.
*/
getEmulatorEndpoint(): string;
}