2017-01-28 08:04:34 +01:00
|
|
|
const assert = require('assert')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const clone = require('clone')
|
|
|
|
const MetaMaskController = require('../../app/scripts/metamask-controller')
|
|
|
|
const firstTimeState = require('../../app/scripts/first-time-state')
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('MetaMaskController', function () {
|
2016-09-07 00:23:48 +02:00
|
|
|
const noop = () => {}
|
2017-05-04 23:35:10 +02:00
|
|
|
const metamaskController = new MetaMaskController({
|
2016-09-07 00:23:48 +02:00
|
|
|
showUnconfirmedMessage: noop,
|
|
|
|
unlockAccountMessage: noop,
|
2016-12-16 19:33:36 +01:00
|
|
|
showUnapprovedTx: noop,
|
2017-09-19 19:53:56 +02:00
|
|
|
platform: {},
|
2017-01-12 04:26:56 +01:00
|
|
|
// initial state
|
2017-01-28 08:04:34 +01:00
|
|
|
initState: clone(firstTimeState),
|
2016-09-07 00:23:48 +02:00
|
|
|
})
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
beforeEach(function () {
|
2016-09-07 00:23:48 +02:00
|
|
|
// sinon allows stubbing methods that are easily verified
|
|
|
|
this.sinon = sinon.sandbox.create()
|
|
|
|
})
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
afterEach(function () {
|
2016-09-07 00:23:48 +02:00
|
|
|
// sinon requires cleanup otherwise it will overwrite context
|
|
|
|
this.sinon.restore()
|
|
|
|
})
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('Metamask Controller', function () {
|
|
|
|
assert(metamaskController)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|