A Metamask fork with Infura removed and default networks editable
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.
ciphermask/test/lib/render-helpers.js

44 lines
878 B

import { shallow, mount } from 'enzyme'
import React from 'react'
6 years ago
import { BrowserRouter } from 'react-router-dom'
import { shape } from 'prop-types'
export function shallowWithStore (component, store) {
6 years ago
const context = {
store,
}
5 years ago
return shallow(component, { context })
6 years ago
}
export function mountWithStore (component, store) {
6 years ago
const context = {
store,
}
5 years ago
return mount(component, { context })
6 years ago
}
export function mountWithRouter (node) {
6 years ago
// Instantiate router context
const router = {
history: new BrowserRouter().history,
route: {
location: {},
match: {},
},
}
const createContext = () => ({
context: { router, t: () => {} },
childContextTypes: { router: shape({}), t: () => {} },
})
const Wrapper = () => (
<BrowserRouter>
{node}
</BrowserRouter>
)
return mount(<Wrapper />, createContext())
6 years ago
}