You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, code coverage in async version is hampered because each line of await code involves two branches: the sync version and the async version. Currently, only the async version is tested on most lines. Figure out some way to improve coverage by testing both sync and async versions of the await.
The text was updated successfully, but these errors were encountered:
Currently, code coverage in async version is hampered because each line of
await
code involves two branches: the sync version and the async version. Currently, only the async version is tested on most lines. Figure out some way to improve coverage by testing both sync and async versions of theawait
.The text was updated successfully, but these errors were encountered: