It looks like there is no counterpart of Where method to check exception properties for async delegates.
Would be nice to have an option to check exception properties:
await foo.Awaiting(_ => _.AsyncMethodThroingException())
.Should().ThrowAsync<Exception>().Where(ex => ...);