aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/keyring-controller-test.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/unit/keyring-controller-test.js b/test/unit/keyring-controller-test.js
index 437441e0e..c32141cc6 100644
--- a/test/unit/keyring-controller-test.js
+++ b/test/unit/keyring-controller-test.js
@@ -82,13 +82,15 @@ describe('KeyringController', function() {
})
- describe('#migrateAndGetKey', function() {
+ describe('#migrateOldVaultIfAny', function() {
it('should return the key for that password', function(done) {
- keyringController.migrateAndGetKey(password)
- .then((key) => {
- assert(key, 'a key is returned')
+ keyringController.migrateOldVaultIfAny(password)
+ .then(() => {
done()
})
+ .catch((reason) => {
+ assert.ifError(reason)
+ })
})
})