mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-07-22 16:05:49 +00:00
2bb8a4e3d0
First run of this test produced zero BalancesDiag output at all - not even a single balancesSync() call for any chain. Root cause: BalancesUpdateSystem.start() is a cold flow only ever collected by RootInteractor, which is wired to the root Activity/ViewModel lifecycle. This bare instrumented test never launches that Activity, so the pipeline was never started - the test's own timeout, not the production bug, explained the failure. Now collect the same AssetsFeatureApi. updateSystem instance directly instead of relying on app UI lifecycle.