UNPKG

563 BTypeScriptView Raw
1import { Executor } from '../executors/Executor';
2import { TestProperties } from '../Test';
3import { TddLifecycleInterface, TddSuiteFactory, suite, test, before, after, beforeEach, afterEach } from './tdd';
4export interface BddInterface extends TddLifecycleInterface {
5 describe(name: string, factory: TddSuiteFactory): void;
6 it(name: string, test: TestProperties['test']): void;
7}
8export { suite as describe };
9export { test as it };
10export { before, after, beforeEach, afterEach };
11export declare function getInterface(executor: Executor): BddInterface;