workflow-kotlin
workflow-kotlin copied to clipboard
1311: Dispatcher Tests for RenderWorkflowIn on Android
trafficstars
A set of tests for using renderWorkflowIn with particular dispatchers on Android. These are used in two ways:
- To ensure we are satisfying the guarantee we want to keep: Updates from the runtime in response to an event are processed before the next Choreographer frame on Android.
- We are effectively conflating renderings on Android when using a particular dispatcher (e.g., in this case the
Main.immediatedispatcher). Now, this 2nd category is currently failing! That's part of the fix that needs to happen for #1311 . So we merge these red tests first.