aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/idStore-test.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/unit/idStore-test.js b/test/unit/idStore-test.js
index d3fabfe9d..e9611d7e8 100644
--- a/test/unit/idStore-test.js
+++ b/test/unit/idStore-test.js
@@ -15,7 +15,9 @@ describe('IdentityStore', function() {
window.localStorage = {} // Hacking localStorage support into JSDom
idStore = new IdentityStore({
- addAccount(acct) { accounts.push(acct) },
+ ethStore: {
+ addAccount(acct) { accounts.push(acct) },
+ },
})
idStore.createNewVault(password, entropy, (err, seeds) => {
@@ -32,7 +34,9 @@ describe('IdentityStore', function() {
window.localStorage = {} // Hacking localStorage support into JSDom
idStore = new IdentityStore({
- addAccount(acct) { newAccounts.push(acct) },
+ ethStore: {
+ addAccount(acct) { newAccounts.push(acct) },
+ },
})
})
@@ -61,8 +65,8 @@ describe('IdentityStore', function() {
window.localStorage = {} // Hacking localStorage support into JSDom
idStore = new IdentityStore({
- addAccount(acct) {
- accounts.push(acct)
+ ethStore: {
+ addAccount(acct) { accounts.push(acct) },
},
})
})