1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/test/helper.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

import Enzyme from 'enzyme'
import Adapter from 'enzyme-adapter-react-15'
Enzyme.configure({ adapter: new Adapter() })
// disallow promises from swallowing errors
enableFailureOnUnhandledPromiseRejection()
// logging util
2017-02-21 08:42:40 +01:00
var log = require('loglevel')
log.setDefaultLevel(5)
global.log = log
2017-02-21 08:42:40 +01:00
//
// polyfills
//
// fetch
global.fetch = require('isomorphic-fetch')
// dom
require('jsdom-global')()
// localStorage
window.localStorage = {}
2016-04-18 20:31:06 +02:00
// crypto.getRandomValues
if (!window.crypto) window.crypto = {}
if (!window.crypto.getRandomValues) window.crypto.getRandomValues = require('polyfill-crypto.getrandomvalues')
2017-02-21 08:42:40 +01:00
2017-05-04 23:35:10 +02:00
function enableFailureOnUnhandledPromiseRejection () {
// overwrite node's promise with the stricter Bluebird promise
global.Promise = require('bluebird')
2017-03-30 23:49:39 +02:00
// modified from https://github.com/mochajs/mocha/issues/1926#issuecomment-180842722
2017-05-04 23:35:10 +02:00
// rethrow unhandledRejections
if (typeof process !== 'undefined') {
process.on('unhandledRejection', function (reason) {
2017-03-30 23:49:39 +02:00
throw reason
})
} else if (typeof window !== 'undefined') {
// 2016-02-01: No browsers support this natively, however bluebird, when.js,
// and probably other libraries do.
if (typeof window.addEventListener === 'function') {
window.addEventListener('unhandledrejection', function (evt) {
2017-03-30 23:49:39 +02:00
throw evt.detail.reason
})
} else {
2017-03-30 23:49:39 +02:00
var oldOHR = window.onunhandledrejection
window.onunhandledrejection = function (evt) {
2017-03-30 23:49:39 +02:00
if (typeof oldOHR === 'function') oldOHR.apply(this, arguments)
throw evt.detail.reason
}
}
} else if (typeof console !== 'undefined' &&
typeof (console.error || console.log) === 'function') {
2017-03-30 23:49:39 +02:00
(console.error || console.log)('Unhandled rejections will be ignored!')
}
2017-05-04 23:35:10 +02:00
}