Merge pull request #3961 from waywardmonkeys/mocha-booleans

mocha.d.ts: Boolean should be boolean.
This commit is contained in:
Horiuchi_H
2015-03-26 09:18:38 +09:00

4
mocha/mocha.d.ts vendored
View File

@@ -37,10 +37,10 @@ interface MochaSetupOptions {
reporter?: any;
// bail on the first test failure
bail?: Boolean;
bail?: boolean;
// ignore global leaks
ignoreLeaks?: Boolean;
ignoreLeaks?: boolean;
// grep string or regexp to filter tests with
grep?: any;