clarkbw / jest-localstorage-mock

A module to mock window.localStorage and window.sessionStorage in Jest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't convert values to strings before storing

shai32 opened this issue · comments

commented

localstorage does not support setting objects. (it save them as "[object Object]")
so the mock should act the same

Oh right, I think it runs a toString method on value being passed.