You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instead of const { configureStore } = require('redux-mock-store'), also this: const configureStore = require('redux-mock-store') doesn't work.
the problem is related with the double export statement that you make: export function configureStore ... export default configureStore
Regarding of that, it's a great tool for testing!
The text was updated successfully, but these errors were encountered:
Hi,
For CommonJS version you need to put:
const configureStore = require('redux-mock-store').default;
instead of
const { configureStore } = require('redux-mock-store')
, also this:const configureStore = require('redux-mock-store')
doesn't work.the problem is related with the double export statement that you make:
export function configureStore ...
export default configureStore
Regarding of that, it's a great tool for testing!
The text was updated successfully, but these errors were encountered: