aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib/shallow-with-store.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/shallow-with-store.js')
-rw-r--r--test/lib/shallow-with-store.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/lib/shallow-with-store.js b/test/lib/shallow-with-store.js
index 2a66adb17..9df10a3c5 100644
--- a/test/lib/shallow-with-store.js
+++ b/test/lib/shallow-with-store.js
@@ -1,16 +1,20 @@
const { shallow, mount } = require('enzyme')
-exports.shallowWithStore = function shallowWithStore (component, store) {
+module.exports = {
+ shallowWithStore,
+ mountWithStore,
+}
+
+function shallowWithStore (component, store) {
const context = {
store,
}
-
- return shallow(component, { context })
+ return shallow(component, {context})
}
-exports.mountWithStore = function mountWithStore (component, store) {
+function mountWithStore (component, store) {
const context = {
store,
}
- return mount(component, { context })
+ return mount(component, {context})
}