mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
20 lines
348 B
JavaScript
20 lines
348 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})
|
||
|
}
|