Merge pull request #2618 from MetaMask/NewUI-flat-update-deps
New ui flat update depsfeature/default_network_editable
commit
9a3ca5d502
@ -1,11 +1,16 @@ |
|||||||
const shallow = require('enzyme').shallow |
const { shallow, mount } = require('enzyme') |
||||||
|
|
||||||
module.exports = shallowWithStore |
exports.shallowWithStore = function shallowWithStore (component, store) { |
||||||
|
|
||||||
function shallowWithStore (component, store) { |
|
||||||
const context = { |
const context = { |
||||||
store, |
store, |
||||||
} |
} |
||||||
|
|
||||||
return shallow(component, { context }) |
return shallow(component, { context }) |
||||||
}; |
} |
||||||
|
|
||||||
|
exports.mountWithStore = function mountWithStore (component, store) { |
||||||
|
const context = { |
||||||
|
store, |
||||||
|
} |
||||||
|
return mount(component, { context }) |
||||||
|
} |
||||||
|
Loading…
Reference in new issue