Add failing test for #2577 Seed Phrase Bug

feature/default_network_editable
Dan Finlay 7 years ago
parent 408bbe726f
commit 884f203564
  1. 18
      test/unit/metamask-controller-test.js

@ -27,6 +27,24 @@ describe('MetaMaskController', function () {
describe('Metamask Controller', function () {
assert(metamaskController)
describe('#createNewVaultAndKeychain', function () {
it('can only create new vault on keyringController once', async function () {
const selectStub = sinon.stub(metamaskController, 'selectFirstIdentity')
const expectation = sinon.mock(metamaskController.keyringController)
.expects('createNewVaultAndKeychain').once()
const password = 'a-fake-password'
const first = await metamaskController.createNewVaultAndKeychain(password)
const second = await metamaskController.createNewVaultAndKeychain(password)
expectation.verify()
selectStub.reset()
})
})
})
})

Loading…
Cancel
Save