Merge pull request #1585 from kentskinner/master

Add optional 'message' parameter to chai.expect.
This commit is contained in:
Masahiro Wakame
2014-01-21 07:22:45 -08:00
+1 -1
View File
@@ -6,7 +6,7 @@
declare module chai {
function expect(target: any): Expect;
function expect(target: any, message?: string): Expect;
// Provides a way to extend the internals of Chai
function use(fn: (chai: any, utils: any) => void);