diff --git a/test/mocks/FakeStorage.js b/test/mocks/FakeStorage.js index 5ab31ef54..b976d5a74 100644 --- a/test/mocks/FakeStorage.js +++ b/test/mocks/FakeStorage.js @@ -19,6 +19,10 @@ FakeStorage.prototype.get = function(wid, id) { return this.storage[wid + '-' +id]; } +FakeStorage.prototype.setFromObj = function(id, wallet) { + // TODO +}; + FakeStorage.prototype.clear = function() { delete this['storage']; }