1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 20:39:08 +01:00

Add mysterious failing test

This commit is contained in:
Dan Finlay 2017-08-23 21:01:42 -07:00
parent 855f4eeacb
commit dae7c632d6

View File

@ -142,6 +142,26 @@ describe('Nonce Tracker', function () {
await nonceLock.releaseLock()
})
})
describe('A normal usage condition.', function () {
beforeEach(function () {
const txGen = new MockTxGen()
const confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 10 })
const pendingTxs = txGen.generate({
status: 'submitted',
nonce: 100,
}, { count: 1 })
// 0x32 is 50 in hex:
nonceTracker = generateNonceTrackerWith(pendingTxs, confirmedTxs, '0x32')
})
it('should return nonce after network nonce', async function () {
this.timeout(15000)
const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
assert.equal(nonceLock.nextNonce, '10', `nonce should be 10 got ${nonceLock.nextNonce}`)
await nonceLock.releaseLock()
})
})
})
})