@firestore-emulator/jest
Version:
This package contains a [`Jest`](https://jestjs.io/) environment for setup `@firestore-emulator/server`.
10 lines • 514 B
TypeScript
import type { EnvironmentContext, JestEnvironmentConfig } from "@jest/environment";
import { TestEnvironment } from "jest-environment-node";
import type { FirestoreEmulatorEnvironmentConfig } from "../types";
export default class FirestoreEmulatorEnvironment extends TestEnvironment {
private server;
constructor(config: FirestoreEmulatorEnvironmentConfig & JestEnvironmentConfig, context: EnvironmentContext);
setup(): Promise<void>;
teardown(): Promise<void>;
}
//# sourceMappingURL=node.d.ts.map