upgrade test dependencies
This commit is contained in:
parent
fdcd7aaf98
commit
b000377fd5
4 changed files with 24 additions and 17 deletions
test
|
@ -4,6 +4,8 @@ var assert = require('assert')
|
|||
var bcrypto = require('../src/crypto')
|
||||
var ecdsa = require('../src/ecdsa')
|
||||
var sinon = require('sinon')
|
||||
var sinonTest = require('sinon-test')
|
||||
var setupTest = sinonTest(sinon)
|
||||
|
||||
var BigInteger = require('bigi')
|
||||
var ECSignature = require('../src/ecsignature')
|
||||
|
@ -28,7 +30,7 @@ describe('ecdsa', function () {
|
|||
})
|
||||
})
|
||||
|
||||
it('loops until an appropriate k value is found', sinon.test(function () {
|
||||
it('loops until an appropriate k value is found', setupTest(function () {
|
||||
this.mock(BigInteger).expects('fromBuffer')
|
||||
.exactly(3)
|
||||
.onCall(0).returns(new BigInteger('0')) // < 1
|
||||
|
@ -42,7 +44,7 @@ describe('ecdsa', function () {
|
|||
assert.strictEqual(k.toString(), '42')
|
||||
}))
|
||||
|
||||
it('loops until a suitable signature is found', sinon.test(function () {
|
||||
it('loops until a suitable signature is found', setupTest(function () {
|
||||
this.mock(BigInteger).expects('fromBuffer')
|
||||
.exactly(4)
|
||||
.onCall(0).returns(new BigInteger('0')) // < 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue