aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2017-03-31 09:54:58 +0800
committerGitHub <noreply@github.com>2017-03-31 09:54:58 +0800
commit242ba6e0ecc8628288ca5a80c8c6183675030b1b (patch)
tree07b2b5cef8163648bc80c12476c9928f08cb4b3f /test/unit
parent738201e8e5d829282363dda4bc0480dec7245f4a (diff)
parent47ea5452414ef4c126ff6c6ccb40615f852f8bed (diff)
downloadtangerine-wallet-browser-242ba6e0ecc8628288ca5a80c8c6183675030b1b.tar.gz
tangerine-wallet-browser-242ba6e0ecc8628288ca5a80c8c6183675030b1b.tar.zst
tangerine-wallet-browser-242ba6e0ecc8628288ca5a80c8c6183675030b1b.zip
Merge pull request #1298 from MetaMask/tests-fix
Test Framework Fix
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/keyring-controller-test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/keyring-controller-test.js b/test/unit/keyring-controller-test.js
index aae4cdfd6..efd0a3546 100644
--- a/test/unit/keyring-controller-test.js
+++ b/test/unit/keyring-controller-test.js
@@ -135,7 +135,7 @@ describe('KeyringController', function() {
})
describe('#getAccounts', function() {
- it('returns the result of getAccounts for each keyring', function() {
+ it('returns the result of getAccounts for each keyring', function(done) {
keyringController.keyrings = [
{ getAccounts() { return Promise.resolve([1,2,3]) } },
{ getAccounts() { return Promise.resolve([4,5,6]) } },