Justin Leaming
Justin Leaming
Thanks for the response. I will test this out today and confirm whether it works or not. If it is still giving me trouble I will try and recreate this...
So the UI thread can release while other work is completed. I do also get similar test failures if I await our `Task.Run(() =>{})`.
In testing in my particular use case I've found that `Task.WhenAll` and `Task.Run` behave similar. Awaiting them, as you have above, will block any further execution from happening. Firing and...