mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
21 lines
349 B
JavaScript
21 lines
349 B
JavaScript
const { shallow, mount } = require('enzyme')
|
|
|
|
module.exports = {
|
|
shallowWithStore,
|
|
mountWithStore,
|
|
}
|
|
|
|
function shallowWithStore (component, store) {
|
|
const context = {
|
|
store,
|
|
}
|
|
return shallow(component, {context})
|
|
}
|
|
|
|
function mountWithStore (component, store) {
|
|
const context = {
|
|
store,
|
|
}
|
|
return mount(component, {context})
|
|
}
|