Uncomment isBigNumber tests

This commit is contained in:
Michael Mclaughlin 2017-01-08 12:41:24 +00:00
parent ab87238049
commit dffb04b5d9
1 changed files with 4 additions and 4 deletions

View File

@ -50,10 +50,10 @@ var count = (function isBigNumber(BigNumber) {
T(true, new BigNumber('1'));
var AnotherBigNumber = BigNumber.another();
//T(true, new AnotherBigNumber(0));
//T(true, new AnotherBigNumber('0'));
//T(true, new AnotherBigNumber(1));
//T(true, new AnotherBigNumber('1'));
T(true, new AnotherBigNumber(0));
T(true, new AnotherBigNumber('0'));
T(true, new AnotherBigNumber(1));
T(true, new AnotherBigNumber('1'));
log('\n ' + passed + ' of ' + total + ' tests passed in ' + (+new Date() - start) + ' ms \n');
return [passed, total];