import { Forwarder } from "./forwarder.interface"; import { TestExecutionContext } from "../runner"; import { Project } from "../loader"; /** * Connecting a forwarder to TestExecutionContext ctx * * It will immediately call the setup method of the forwarder (if present) * * It will register event-listener on the ctx for this event: * * ctx-event | forwarder-method * * @param forwarder * @param ctx * @param project * * @returns a function which invokes the forward and teardown methods (if present) */ export declare const connectForwarderToTestExecutionContext: (forwarder: Forwarder, ctx: TestExecutionContext, project: Project) => Promise<() => Promise>; //# sourceMappingURL=connect-forwarder-to-test-execution-context.function.d.ts.map