cybernaut
Version:
Reliable, zero configuration end-to-end testing in BDD-style.
6 lines (5 loc) • 344 B
TypeScript
import { Config } from './config';
import { Test } from './test';
export declare type Implementation = (t: Test) => Promise<void>;
export declare type Options = Pick<Config, 'capabilities' | 'retries' | 'retryDelay' | 'timeouts'>;
export declare function execute(implementation: Implementation, tap: Tap.Test, options: Options): Promise<void>;