2020-01-09 04:34:58 +01:00
|
|
|
import Ganache from 'ganache-core'
|
|
|
|
import nock from 'nock'
|
2018-01-30 22:26:37 +01:00
|
|
|
import Enzyme from 'enzyme'
|
2019-12-06 16:40:07 +01:00
|
|
|
import Adapter from 'enzyme-adapter-react-16'
|
2020-01-09 04:34:58 +01:00
|
|
|
import log from 'loglevel'
|
2020-07-18 01:36:29 +02:00
|
|
|
import { JSDOM } from 'jsdom'
|
|
|
|
|
2018-07-30 15:27:25 +02:00
|
|
|
nock.disableNetConnect()
|
|
|
|
nock.enableNetConnect('localhost')
|
|
|
|
|
2020-01-27 16:15:37 +01:00
|
|
|
// catch rejections that are still unhandled when tests exit
|
|
|
|
const unhandledRejections = new Map()
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
|
|
console.log('Unhandled rejection:', reason)
|
|
|
|
unhandledRejections.set(promise, reason)
|
|
|
|
})
|
|
|
|
process.on('rejectionHandled', (promise) => {
|
|
|
|
console.log(`handled: ${unhandledRejections.get(promise)}`)
|
|
|
|
unhandledRejections.delete(promise)
|
|
|
|
})
|
|
|
|
|
|
|
|
process.on('exit', () => {
|
|
|
|
if (unhandledRejections.size > 0) {
|
|
|
|
console.error(`Found ${unhandledRejections.size} unhandled rejections:`)
|
|
|
|
for (const reason of unhandledRejections.values()) {
|
|
|
|
console.error('Unhandled rejection: ', reason)
|
|
|
|
}
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-01-30 22:26:37 +01:00
|
|
|
Enzyme.configure({ adapter: new Adapter() })
|
2017-03-30 23:43:56 +02:00
|
|
|
|
2018-05-25 08:18:11 +02:00
|
|
|
// ganache server
|
|
|
|
const server = Ganache.server()
|
2020-04-15 19:23:27 +02:00
|
|
|
server.listen(8545)
|
|
|
|
|
|
|
|
server.on('error', console.error)
|
|
|
|
server.on('clientError', console.error)
|
2018-05-25 08:18:11 +02:00
|
|
|
|
2017-02-21 08:42:40 +01:00
|
|
|
log.setDefaultLevel(5)
|
2017-03-30 23:43:56 +02:00
|
|
|
global.log = log
|
2017-02-21 08:42:40 +01:00
|
|
|
|
2017-03-30 23:43:56 +02:00
|
|
|
//
|
|
|
|
// polyfills
|
|
|
|
//
|
|
|
|
|
2020-04-15 19:23:27 +02:00
|
|
|
// dom
|
|
|
|
const jsdom = new JSDOM()
|
|
|
|
global.window = jsdom.window
|
|
|
|
|
|
|
|
// required by `trezor-connect/node_modules/whatwg-fetch`
|
|
|
|
global.self = window
|
|
|
|
// required by `dom-helpers` and various other libraries
|
|
|
|
global.document = window.document
|
|
|
|
// required by `react-tippy`
|
|
|
|
global.navigator = window.navigator
|
|
|
|
global.Element = window.Element
|
2020-05-27 17:31:53 +02:00
|
|
|
// required by `react-popper`
|
|
|
|
global.HTMLElement = window.HTMLElement
|
|
|
|
|
|
|
|
// required by any components anchored on `popover-content`
|
|
|
|
const popoverContent = window.document.createElement('div')
|
|
|
|
popoverContent.setAttribute('id', 'popover-content')
|
|
|
|
window.document.body.appendChild(popoverContent)
|
2020-04-15 19:23:27 +02:00
|
|
|
|
|
|
|
// delete AbortController added by jsdom so it can be polyfilled correctly below
|
|
|
|
delete window.AbortController
|
|
|
|
|
2018-05-25 07:10:17 +02:00
|
|
|
// fetch
|
2020-01-30 02:01:32 +01:00
|
|
|
const fetch = require('node-fetch')
|
|
|
|
|
2020-04-15 19:23:27 +02:00
|
|
|
const { Headers, Request, Response } = fetch
|
|
|
|
Object.assign(window, { fetch, Headers, Request, Response })
|
2018-05-25 07:10:17 +02:00
|
|
|
|
2020-04-15 19:23:27 +02:00
|
|
|
require('abortcontroller-polyfill/dist/polyfill-patch-fetch')
|
2017-03-30 23:43:56 +02:00
|
|
|
|
|
|
|
// localStorage
|
2020-12-04 00:55:23 +01:00
|
|
|
window.localStorage = {
|
|
|
|
removeItem: () => null,
|
|
|
|
}
|
2020-08-20 19:48:43 +02:00
|
|
|
// override @metamask/logo
|
2020-08-14 13:47:02 +02:00
|
|
|
window.requestAnimationFrame = () => undefined
|
2020-01-30 20:34:45 +01:00
|
|
|
|
2017-03-30 23:43:56 +02:00
|
|
|
// crypto.getRandomValues
|
2019-11-20 01:03:20 +01:00
|
|
|
if (!window.crypto) {
|
|
|
|
window.crypto = {}
|
|
|
|
}
|
|
|
|
if (!window.crypto.getRandomValues) {
|
2020-10-21 18:31:03 +02:00
|
|
|
// eslint-disable-next-line node/global-require
|
2019-11-20 01:03:20 +01:00
|
|
|
window.crypto.getRandomValues = require('polyfill-crypto.getrandomvalues')
|
|
|
|
}
|