Add missing done

feature/default_network_editable
Dan Finlay 7 years ago
parent ef1282b556
commit 96df7ad8d3
  1. 3
      test/unit/tx-controller-test.js

@ -342,6 +342,7 @@ describe('Transaction Controller', function () {
}
// Stubbing out current account state:
txController.ethStore = { getState: noop }
const getStateStub = sinon.stub(txController.ethStore, 'getState')
.returns(fakeStoreState)
@ -354,9 +355,9 @@ describe('Transaction Controller', function () {
const updatedMeta = txController.getTx(txMeta.id)
assert.notEqual(updatedMeta.status, txMeta.status, 'status changed.')
assert.notEqual(updatedMeta.status, 'failed', 'tx set to failed.')
done()
})
})
})
})

Loading…
Cancel
Save