|
|
|
@ -5,9 +5,9 @@
|
|
|
|
|
|
|
|
|
|
declare function run(): void;
|
|
|
|
|
|
|
|
|
|
declare function suite(name: string, fn: (err?)=>void);
|
|
|
|
|
declare function test(name: string, fn: (done?: (err?)=>void)=>void);
|
|
|
|
|
declare function suiteSetup(fn: (done?: (err?)=>void)=>void);
|
|
|
|
|
declare function suiteTeardown(fn: (done?: (err?)=>void)=>void);
|
|
|
|
|
declare function setup(fn: (done?: (err?)=>void)=>void);
|
|
|
|
|
declare function teardown(fn: (done?: (err?)=>void)=>void);
|
|
|
|
|
declare function suite(name: string, fn: (err?: any)=>void): void;
|
|
|
|
|
declare function test(name: string, fn: (done: (err?: any)=>void)=>void): void;
|
|
|
|
|
declare function suiteSetup(fn: (done: (err?: any)=>void)=>void): void;
|
|
|
|
|
declare function suiteTeardown(fn: (done: (err?: any)=>void)=>void): void;
|
|
|
|
|
declare function setup(fn: (done: (err?: any)=>void)=>void): void;
|
|
|
|
|
declare function teardown(fn: (done: (err?: any)=>void)=>void): void;
|
|
|
|
|