aboutsummaryrefslogblamecommitdiffstats
path: root/test/unit/reducers/unlock_vault_test.js
blob: d66e8edbb8791d80987325b1d5c16117e2a8363f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     
                              
                                             



                                                                                        
                                                                                          
 

                                                          
                                                             
                                      

    
                         



                                                                 

                                          




                                                 
          






                                                                                 

                                                     
                                                 
                                      


                            
          






                                                                           
// var jsdom = require('mocha-jsdom')
var assert = require('assert')
// var freeze = require('deep-freeze-strict')
var path = require('path')
var sinon = require('sinon')

var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))

describe('#unlockMetamask(selectedAccount)', function () {
  beforeEach(function () {
    // sinon allows stubbing methods that are easily verified
    this.sinon = sinon.createSandbox()
  })

  afterEach(function () {
    // sinon requires cleanup otherwise it will overwrite context
    this.sinon.restore()
  })

  describe('after an error', function () {
    it('clears warning', function () {
      const warning = 'this is the wrong warning'
      const account = 'foo_account'
      const initialState = {
        appState: {
          warning: warning,
        },
      }

      const resultState = reducers(initialState, actions.unlockMetamask(account))
      assert.equal(resultState.appState.warning, null, 'warning nullified')
    })
  })

  describe('going home after an error', function () {
    it('clears warning', function () {
      const warning = 'this is the wrong warning'
      // const account = 'foo_account'
      const initialState = {
        appState: {
          warning: warning,
        },
      }

      const resultState = reducers(initialState, actions.goHome())
      assert.equal(resultState.appState.warning, null, 'warning nullified')
    })
  })
})