mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Finish async when failing async test
This commit is contained in:
parent
ae7c296669
commit
c0f07844af
@ -314,7 +314,7 @@ describe('Transaction Controller', function () {
|
|||||||
it('prepares a tx with the chainId set', function (done) {
|
it('prepares a tx with the chainId set', function (done) {
|
||||||
txController.addTx({ id: '1', status: 'unapproved', metamaskNetworkId: currentNetworkId, txParams: {} }, noop)
|
txController.addTx({ id: '1', status: 'unapproved', metamaskNetworkId: currentNetworkId, txParams: {} }, noop)
|
||||||
txController.signTransaction('1', (err, rawTx) => {
|
txController.signTransaction('1', (err, rawTx) => {
|
||||||
if (err) return assert.fail('it should not fail')
|
if (err) return done('it should not fail')
|
||||||
const ethTx = new EthTx(ethUtil.toBuffer(rawTx))
|
const ethTx = new EthTx(ethUtil.toBuffer(rawTx))
|
||||||
assert.equal(ethTx.getChainId(), currentNetworkId)
|
assert.equal(ethTx.getChainId(), currentNetworkId)
|
||||||
done()
|
done()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user