diff options
author | frankiebee <frankie.diamond@gmail.com> | 2017-08-22 07:44:29 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2017-08-22 07:44:29 +0800 |
commit | e43db262d8aa3fb725bc8e05d2ecbf38de32688a (patch) | |
tree | ae02292e42c9f467ede7378d2fa9bafd9ffc9e28 /test/unit | |
parent | bb24f07b1759eb46fa4e4f733c348f1b87521eb6 (diff) | |
download | tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar.gz tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar.bz2 tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar.lz tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar.xz tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.tar.zst tangerine-wallet-browser-e43db262d8aa3fb725bc8e05d2ecbf38de32688a.zip |
fix test
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/nonce-tracker-test.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/unit/nonce-tracker-test.js b/test/unit/nonce-tracker-test.js index 78fdee209..9a819b146 100644 --- a/test/unit/nonce-tracker-test.js +++ b/test/unit/nonce-tracker-test.js @@ -14,7 +14,7 @@ describe('Nonce Tracker', function () { beforeEach(function () { const txGen = new MockTxGen() confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 3 }) - pendingTxs = txGen.generate({ status: 'pending' }, { count: 1 }) + pendingTxs = txGen.generate({ status: 'submitted' }, { count: 1 }) nonceTracker = generateNonceTrackerWith(pendingTxs, confirmedTxs, '0x1') }) @@ -51,7 +51,7 @@ describe('Nonce Tracker', function () { const txGen = new MockTxGen() confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 1 }) pendingTxs = txGen.generate({ - status: 'pending', + status: 'submitted', txParams: { nonce: '0x01' }, }, { count: 5 }) @@ -61,7 +61,7 @@ describe('Nonce Tracker', function () { it('should return nonce after those', async function () { this.timeout(15000) const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926') - assert.equal(nonceLock.nextNonce, '2', 'nonce should be 2') + assert.equal(nonceLock.nextNonce, '2', `nonce should be 2 got ${nonceLock.nextNonce}`) await nonceLock.releaseLock() }) }) @@ -76,7 +76,7 @@ describe('Nonce Tracker', function () { it('should return nonce after those', async function () { this.timeout(15000) const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926') - assert.equal(nonceLock.nextNonce, '2', 'nonce should be 2') + assert.equal(nonceLock.nextNonce, '2', `nonce should be 2 got ${nonceLock.nextNonce}`) await nonceLock.releaseLock() }) }) @@ -84,14 +84,14 @@ describe('Nonce Tracker', function () { describe('when local pending count is higher than other metrics', function () { beforeEach(function () { const txGen = new MockTxGen() - pendingTxs = txGen.generate({ status: 'pending' }, { count: 2 }) + pendingTxs = txGen.generate({ status: 'submitted' }, { count: 2 }) nonceTracker = generateNonceTrackerWith(pendingTxs, []) }) it('should return nonce after those', async function () { this.timeout(15000) const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926') - assert.equal(nonceLock.nextNonce, '2', 'nonce should be 2') + assert.equal(nonceLock.nextNonce, '2', `nonce should be 2 got ${nonceLock.nextNonce}`) await nonceLock.releaseLock() }) }) @@ -99,21 +99,21 @@ describe('Nonce Tracker', function () { describe('when provider nonce is higher than other metrics', function () { beforeEach(function () { const txGen = new MockTxGen() - pendingTxs = txGen.generate({ status: 'pending' }, { count: 2 }) + pendingTxs = txGen.generate({ status: 'submitted' }, { count: 2 }) nonceTracker = generateNonceTrackerWith(pendingTxs, [], '0x05') }) it('should return nonce after those', async function () { this.timeout(15000) const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926') - assert.equal(nonceLock.nextNonce, '6', 'nonce should be 6') + assert.equal(nonceLock.nextNonce, '5', `nonce should be 5 got ${nonceLock.nextNonce}`) await nonceLock.releaseLock() }) }) }) }) -function generateNonceTrackerWith(pending, confirmed, providerStub = '0x0') { +function generateNonceTrackerWith (pending, confirmed, providerStub = '0x0') { const getPendingTransactions = () => pending const getConfirmedTransactions = () => confirmed providerResultStub.result = providerStub |