mocha.d.ts: Boolean should be boolean.

This commit is contained in:
Bruce Mitchener 2015-03-25 21:07:30 +07:00
parent 0c2ee8583c
commit c7b467e42e

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;