How can react-native-testsmith generate deterministic, high-coverage tests for complex React Native flows without CI flakiness? #7
|
I’m trying to standardize generated tests from Observed issues:
Current stack:
What I need is a production-grade approach for:
If anyone has a practical generation -> cleanup -> CI workflow that scales across a team, I’d appreciate concrete examples. |
Replies: 1 comment
|
Great question. We had the same issues and got much better results by treating generated tests as a two-phase pipeline: “deterministic scaffold” first, then “targeted hardening”. What worked for us:
Ask generation to produce at least one test per state + one transition test (e.g., error -> retry -> success). This immediately improves edge coverage.
Example workflow (team-friendly):
Net result for us: less output drift, fewer CI-only failures, and much less manual cleanup over time. |
Great question. We had the same issues and got much better results by treating generated tests as a two-phase pipeline: “deterministic scaffold” first, then “targeted hardening”.
What worked for us:
Before generation, define a sma…