UNPKG

reactive-di

Version:
26 lines (20 loc) 862 B
// flow-typed signature: 6135ee71dd7f5909dc154d9ca7107558 // flow-typed version: 6d3fbb6763/mocha_v2.4.x/flow_>=v0.22.x type TestFunction = ((done: () => void) => void | Promise<mixed>); declare var describe : { (name:string, spec:() => void): void; only(description:string, spec:() => void): void; skip(description:string, spec:() => void): void; timeout(ms:number): void; }; declare var context : typeof describe; declare var it : { (name:string, spec?:TestFunction): void; only(description:string, spec:TestFunction): void; skip(description:string, spec:TestFunction): void; timeout(ms:number): void; }; declare function before(method : TestFunction):void; declare function beforeEach(method : TestFunction):void; declare function after(method : TestFunction):void; declare function afterEach(method : TestFunction):void;