-
Notifications
You must be signed in to change notification settings - Fork 420
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
Added asnychronous test completed events #1802
Added asnychronous test completed events #1802
Conversation
@JoeRobich I've had this one hanging for a while, can you review or mention someone to review |
@david-driscoll @mholo65 @filipw Anyone have any additional thoughts? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there any unit tests that can be updated / added?
Other than that, looks good.
@JoeRobich Doesn't look like I can merge this myself. |
@Samirat Thanks |
This PR adds events whenever a test is completed. Without it, you have to wait for all the results to be available before you get any feedback. When running long suites of tests, this makes it a lot more usable.
All
TestResult
objects are already processed as events by the VS Code extension, so I don't think any changes are necessary to the vscode extension. This does mean it'll see them twice, once from the asynchronous event and once from the RunTestResponse, but I don't think this has any bad effects.