Is it possible to increase the timeout of asynchronous tests, so that mocks aren't verified immediately?
I have an integration test that's testing moving focus from one object to another, and I want to let the framework dispatch the focus(In|Out) events, but they're dispatched after the mocks are verified, so the test fails.
I've tried [Test(async,timeout=99999)], but it doesn't seem to have any effect.