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.
49 lines
941 B
49 lines
941 B
const { shallow, mount } = require('enzyme')
|
|
import React from 'react'
|
|
import { BrowserRouter } from 'react-router-dom'
|
|
import { shape } from 'prop-types'
|
|
|
|
module.exports = {
|
|
shallowWithStore,
|
|
mountWithStore,
|
|
mountWithRouter,
|
|
}
|
|
|
|
function shallowWithStore (component, store) {
|
|
const context = {
|
|
store,
|
|
}
|
|
return shallow(component, { context })
|
|
}
|
|
|
|
function mountWithStore (component, store) {
|
|
const context = {
|
|
store,
|
|
}
|
|
return mount(component, { context })
|
|
}
|
|
|
|
function mountWithRouter (node) {
|
|
|
|
// 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())
|
|
}
|
|
|