Hi
We use gwt's Storage class to persist data.
our code calls Storage.getLocalStorageIfSupported(); before each try.
Is there an easy way to create a mock of Storage so that Storage.getLocalStorageIfSupported() returns false all the time?
We thought about extending it and using <replace-with> on our module, but Storage is final.
any thoughts?