@redocly/respect-core
Version:
API testing framework core
11 lines • 403 B
TypeScript
import type { Step, TestContext, ExecutedStepsCount } from '../../types.js';
export declare function runStep({ step, ctx, workflowId, retriesLeft, executedStepsCount, }: {
step: Step;
ctx: TestContext;
workflowId: string | undefined;
retriesLeft?: number;
executedStepsCount: ExecutedStepsCount;
}): Promise<{
shouldEnd: boolean;
} | void>;
//# sourceMappingURL=run-step.d.ts.map