test/unit/permissions - fix promise await timing (#8410)

feature/default_network_editable
kumavis 5 years ago committed by GitHub
parent 266d6e67fe
commit dcf08164d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      test/unit/app/controllers/permissions/permissions-middleware-test.js

@ -536,7 +536,9 @@ describe('permissions middleware', function () {
await permController.approvePermissionsRequest(approvedReq, ACCOUNT_ARRAYS.a)
// at this point, the permission should have been granted
// wait for permission to be granted
await pendingApproval
const perms = permController.permissions.getPermissionsForDomain(ORIGINS.a)
assert.equal(
@ -551,8 +553,6 @@ describe('permissions middleware', function () {
[CAVEATS.eth_accounts(ACCOUNT_ARRAYS.a)]
)
await pendingApproval
// we should also see the accounts on the response
assert.ok(
res.result && !res.error,

Loading…
Cancel
Save