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