|
|
|
|
|
by diggan
350 days ago
|
|
Right, but when actually working on UIs, do you need to replay the actual side-effects of those things, or just whatever happened before/after of that? Personally I split those things up into two parts, and only iterate on the UI with "static data" that either exists before, during or after. So testing/iterating on things like "Click button, loading animation plays while network request is in flight, show success/failure" is essentially 4-5 "static" states, and you don't really have to care about what happens in-between much except for corner-cases. |
|