From c9469b6da7a6537867c53d0fb73359e603292251 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 16 Oct 2014 10:20:13 -0300 Subject: [PATCH] wallet and profile backup working on the UX --- test/Identity.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/Identity.js b/test/Identity.js index 45f1ec141..a63a9fedb 100644 --- a/test/Identity.js +++ b/test/Identity.js @@ -54,6 +54,7 @@ describe('Identity model', function() { profile.listWallets = sinon.stub().returns([]); profile.setLastOpenedTs = sinon.stub().yields(null);; profile.store = sinon.stub().yields(null);; + profile.getName = sinon.stub().returns('profile name');; Identity._createProfile = sinon.stub().callsArgWith(3, null, profile);