tests - be more verbose in test messages

feature/default_network_editable
frankiebee 7 years ago
parent 8bd942d406
commit 0c54efdfc7
  1. 4
      test/unit/pending-tx-test.js

@ -369,7 +369,7 @@ describe('PendingTransactionTracker', function () {
} }
}) })
it('should return false', function (done) { it('should return false if nonce has not been taken', function (done) {
pendingTxTracker._checkIfNonceIsTaken({ pendingTxTracker._checkIfNonceIsTaken({
txParams: { txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d', from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
@ -384,7 +384,7 @@ describe('PendingTransactionTracker', function () {
.catch(done) .catch(done)
}) })
it('should return true', function (done) { it('should return true if nonce has been taken', function (done) {
pendingTxTracker._checkIfNonceIsTaken({ pendingTxTracker._checkIfNonceIsTaken({
txParams: { txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d', from: '0x1678a085c290ebd122dc42cba69373b5953b831d',

Loading…
Cancel
Save