Merge pull request #7099 from csnover/patch-3

[chai] Correct type of AssertionError
This commit is contained in:
Steve Ognibene
2015-12-08 08:32:14 -05:00
+1 -1
View File
@@ -19,7 +19,7 @@ declare module Chai {
use(fn: (chai: any, utils: any) => void): any;
assert: AssertStatic;
config: Config;
AssertionError: AssertionError;
AssertionError: typeof AssertionError;
}
export interface ExpectStatic extends AssertionStatic {