Fixed chai bindings so that now they work with CommonJS; added tests

This commit is contained in:
Mariusz Kierski
2014-07-04 15:08:04 +02:00
parent 0f4b74d289
commit 66799b4429
2 changed files with 4 additions and 4 deletions
-4
View File
@@ -129,7 +129,3 @@ declare module chai {
//browser global
declare var assert:chai.Assert;
declare module 'chai' {
export = chai;
}
+4
View File
@@ -162,3 +162,7 @@ declare module chai {
(constructor: Function, expected?: RegExp, message?: string): Expect;
}
}
declare module "chai" {
export = chai;
}