Added the missing before and after hook.

This commit is contained in:
Kazi Manzur Rashid
2013-04-06 10:57:38 +06:00
parent 080b90d517
commit c8ac940242
+10 -1
View File
@@ -15,10 +15,19 @@ declare var it: {
timeout(ms: number);
};
declare function before(action: () => void): void;
declare function before(action: (done: () => void) => void): void;
declare function aftet(action: () => void): void;
declare function after(action: (done: () => void) => void): void;
declare function beforeEach(action: () => void): void;
declare function beforeEach(action: (done: () => void) => void): void;
declare function afterEach(action: () => void): void;
declare function afterEach(action: (done: () => void) => void): void;
declare function afterEach(action: (done: () => void) => void): void;