@nxextensions/firebase-cypress
Version:
An NX Plugin for Firebase Applications that would like to use emulators for E2E testing with Cypress
10 lines (9 loc) • 478 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
import { CypressRunnerSchema } from './cypress-runner.schema';
export declare function detectFirebase(context: ExecutorContext): {
isPresent: boolean;
};
export declare function startFirebaseEmulators(watch: boolean, command: string, options: CypressRunnerSchema, context: ExecutorContext): AsyncGenerator<{
success: boolean;
}>;
export declare function terminateEmulatorsIfStarted(context: ExecutorContext): Promise<void>;