ts-bdd
Version:
A TypeScript BDD testing framework with typed shared examples and state management
8 lines • 426 B
TypeScript
import type { State, TestRunner, Definitions, SuiteCallbackWithInlineBuilder } from '../types/index.js';
export declare class RunnableSuite<TState extends State> {
private readonly definitions;
private readonly runner;
constructor(definitions: Definitions<TState>, runner: TestRunner);
describe(description: string, callback: SuiteCallbackWithInlineBuilder<TState>): void;
}
//# sourceMappingURL=index.d.ts.map