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
I'm using nextJS with redux-toolkit, everything looks fine and works fine, I test some unit tests with vitest and it also works as intended (I don't see any relationship or connection of these tests with redux itself) but whenever I add persist (even simple console log with it inside) to some of files, tests are failing and gives me this error:
stderr | unknown test
redux-persist failed to create sync storage. falling back to noop storage.
The slice reducer for key "configurator" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined
example of code that works just fine and one that causing this issue:
Did anyone had similar issue?
If you need any more info about describing the issue / provide more code examples, please let me know it's my first ever post where I ask for any help.
I'm using nextJS with redux-toolkit, everything looks fine and works fine, I test some unit tests with vitest and it also works as intended (I don't see any relationship or connection of these tests with redux itself) but whenever I add persist (even simple console log with it inside) to some of files, tests are failing and gives me this error:
example of code that works just fine and one that causing this issue:
and this is how my redux persist is configured:
"vitest": "^0.34.5",
"react-redux": "^7.2.8",
"redux-persist": "^6.0.0",
"next": "^13.1.6",
Did anyone had similar issue?
If you need any more info about describing the issue / provide more code examples, please let me know it's my first ever post where I ask for any help.
I tried to follow these posts:
vercel/next.js#15687
https://stackoverflow.com/questions/57781527/how-to-solve-console-error-redux-persist-failed-to-create-sync-storage-falli
but I think these are more related to real issue of redux-persist failed to create sync storage. falling back to noop storage in real app not in test cases.
The text was updated successfully, but these errors were encountered: