reduce number of cases for browser

This commit is contained in:
Manuel Araoz 2014-04-23 15:06:11 -03:00
parent 34ac69616a
commit 2a829c4525
2 changed files with 2 additions and 4 deletions

View File

@ -32,6 +32,7 @@
<script src="test.PeerManager.js"></script>
<script src="test.Point.js"></script>
<script src="test.PrivateKey.js"></script>
<script src="test.random.js"></script>
<script src="test.RpcClient.js"></script>
<script src="test.Script.js"></script>
<script src="test.ScriptInterpreter.js"></script>

View File

@ -9,7 +9,7 @@ var should = chai.should();
var Key = bitcore.Key;
describe('Key randomness tests', function() {
var RUNS = 128;
var RUNS = 32;
it('should pass Frequency (Monobits) Test', function() {
/*
Description: The focus of the test is the proportion
@ -61,17 +61,14 @@ describe('Key randomness tests', function() {
(p1-0.5).should.be.below(0.01);
});
var getBitInByte = function(b, index) {
index.should.be.below(8);
return (b >> index) & 1;
};
var getBitInKey = function(key, index) {
var bindex = parseInt(index / 8);
bindex.should.be.below(key.length);
return getBitInByte(key[bindex], index - bindex * 8);
};
var getBitInKeys = function(keys, index) {
var kindex = parseInt(index / (keys[0].length*8));
kindex.should.be.below(keys.length);
return getBitInKey(keys[kindex], index - (keys[0].length*8) * kindex);
};
it('should pass Runs Test', function() {