1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/metamask-controller-test.js

32 lines
869 B
JavaScript
Raw Normal View History

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 () {
const noop = () => {}
2017-05-04 23:35:10 +02:00
const metamaskController = new MetaMaskController({
showUnconfirmedMessage: noop,
unlockAccountMessage: noop,
2016-12-16 19:33:36 +01:00
showUnapprovedTx: noop,
2017-01-12 04:26:56 +01:00
// initial state
initState: clone(firstTimeState),
})
2017-05-04 23:35:10 +02:00
beforeEach(function () {
// sinon allows stubbing methods that are easily verified
this.sinon = sinon.sandbox.create()
})
2017-05-04 23:35:10 +02:00
afterEach(function () {
// 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)
})
})