mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
fix unit tests
This commit is contained in:
parent
c734e486a0
commit
4b398701c1
@ -57,12 +57,11 @@ describe('TransactionStateManager', function () {
|
|||||||
const tx = { id: 1, status: 'unapproved', metamaskNetworkId: currentNetworkId, txParams: {} }
|
const tx = { id: 1, status: 'unapproved', metamaskNetworkId: currentNetworkId, txParams: {} }
|
||||||
txStateManager.addTx(tx)
|
txStateManager.addTx(tx)
|
||||||
const noop = function (err, txId) {
|
const noop = function (err, txId) {
|
||||||
if (!err) {
|
if (err) {
|
||||||
|
console.log('Error: ', err)
|
||||||
|
}
|
||||||
assert(true, 'event listener has been triggered and noop executed')
|
assert(true, 'event listener has been triggered and noop executed')
|
||||||
done()
|
done()
|
||||||
} else {
|
|
||||||
done(new Error(err.toString()))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
txStateManager.on('1:rejected', noop)
|
txStateManager.on('1:rejected', noop)
|
||||||
txStateManager.setTxStatusRejected(1)
|
txStateManager.setTxStatusRejected(1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user