You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
869 B
31 lines
869 B
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')
|
|
|
|
describe('MetaMaskController', function () {
|
|
const noop = () => {}
|
|
const metamaskController = new MetaMaskController({
|
|
showUnconfirmedMessage: noop,
|
|
unlockAccountMessage: noop,
|
|
showUnapprovedTx: noop,
|
|
// initial state
|
|
initState: clone(firstTimeState),
|
|
})
|
|
|
|
beforeEach(function () {
|
|
// sinon allows stubbing methods that are easily verified
|
|
this.sinon = sinon.sandbox.create()
|
|
})
|
|
|
|
afterEach(function () {
|
|
// sinon requires cleanup otherwise it will overwrite context
|
|
this.sinon.restore()
|
|
})
|
|
|
|
describe('Metamask Controller', function () {
|
|
assert(metamaskController)
|
|
})
|
|
})
|
|
|
|
|