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
The runConsumerTest method is currently synchronous, because all of our code is asynchronous this means we have to use Await.result here instead of (in our case) ScalaTest's AsyncWordSpec. It would be better if this method were asynchronous by nature, and both a synchronous and asynchronous API were supported. (e.g. runConsumerTestAsync).
The
runConsumerTestmethod is currently synchronous, because all of our code is asynchronous this means we have to useAwait.resulthere instead of (in our case) ScalaTest'sAsyncWordSpec. It would be better if this method were asynchronous by nature, and both a synchronous and asynchronous API were supported. (e.g.runConsumerTestAsync).