1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Confine mock strategy to describe block

This commit is contained in:
Dan Finlay 2017-08-21 11:37:39 -07:00
parent c76194d7c3
commit f13c637b23

View File

@ -8,6 +8,9 @@ describe('Nonce Tracker', function () {
let getConfirmedTransactions, confirmedTxs let getConfirmedTransactions, confirmedTxs
let providerResultStub = {} let providerResultStub = {}
describe('#getNonceLock', function () {
describe('with 3 confirmed and 1 pending', function () {
beforeEach(function () { beforeEach(function () {
const txGen = new MockTxGen() const txGen = new MockTxGen()
confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 3 }) confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 3 })
@ -29,7 +32,6 @@ describe('Nonce Tracker', function () {
}) })
}) })
describe('#getNonceLock', function () {
it('should work', async function () { it('should work', async function () {
this.timeout(15000) this.timeout(15000)
const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926') const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
@ -48,5 +50,7 @@ describe('Nonce Tracker', function () {
assert.equal(nonceLock.nextNonce, '4', 'nonce should be 4') assert.equal(nonceLock.nextNonce, '4', 'nonce should be 4')
await nonceLock.releaseLock() await nonceLock.releaseLock()
}) })
})
}) })
}) })