UNPKG

ts-bdd

Version:

A TypeScript BDD testing framework with typed shared examples and state management

9 lines 500 B
import type { State, TestRunner, Definitions } from '../types/index.js'; import { RunnableSuite } from '../runnable-suite/index.js'; export type { ItFn, Definitions, Get, ItBehavesLike } from '../types/index.js'; export { SharedExamplesBuilder } from '../shared-examples-builder/index.js'; export declare function createSuite<TState extends State>({ definitions, runner, }: { definitions: Definitions<TState>; runner: TestRunner; }): RunnableSuite<TState>; //# sourceMappingURL=index.d.ts.map