We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e169e0 commit 274d2ebCopy full SHA for 274d2eb
mocha.d.ts
@@ -21,8 +21,10 @@ declare interface IMochaDescribeWithSkip extends IMochaDescribe {
21
}
22
23
declare interface IMochaTest {
24
- (title?: string, cb?: () => void) : void;
25
- (title?: string, cb?: (done:(err? : Error) => void) => void) : void;
+ (cb?: () => void) : void;
+ (cb?: (done:(err? : Error) => void) => void) : void;
26
+ (title: string, cb?: () => void) : void;
27
+ (title: string, cb?: (done:(err? : Error) => void) => void) : void;
28
29
30
declare interface IMochaTestWithSkip extends IMochaTest {
0 commit comments