-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support async tests #203
Comments
Likewise for |
Actually, now that I understand how this works a little better, it seems like it would be best to just allow separating the standing up of the stub server from the shutting down of the stub server (for consumer tests). There should be different methods for starting and stopping it. That way it can be controlled either before and after each test or before and after all tests. This would allow for a more natural ScalaTest syntax (at least when using Related to #190 |
The
runConsumerTest
method is currently synchronous, because all of our code is asynchronous this means we have to useAwait.result
here 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
).The text was updated successfully, but these errors were encountered: