(candidate)
| 1421 | const state = await getState(); |
| 1422 | const accounts = normalizeHotmailAccounts(state.hotmailAccounts); |
| 1423 | const isAccountAllocatable = (candidate) => Boolean(candidate) |
| 1424 | && candidate.status === 'authorized' |
| 1425 | && !candidate.used |
| 1426 | && Boolean(candidate.refreshToken); |
| 1427 | |
| 1428 | let account = null; |
| 1429 | if (preferredAccountId) { |
no outgoing calls
no test coverage detected