1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00
This commit is contained in:
Csaba Solya 2018-02-23 11:11:14 +01:00
parent 8292dabed5
commit 1b367bc215

View File

@ -43,7 +43,7 @@ describe('EdgeEncryptor', function () {
})
})
it('should not return the same twice.', function () {
it('should not return the same twice.', function (done) {
const encryptPromises = []
encryptPromises.push(edgeEncryptor.encrypt(password, data))
@ -54,6 +54,7 @@ describe('EdgeEncryptor', function () {
assert.notEqual(encryptedData[0], encryptedData[1])
assert.notEqual(encryptedData[0].length, 0)
assert.notEqual(encryptedData[1].length, 0)
done()
})
})
})