mirror of
https://github.com/cashapp/molecule.git
synced 2026-03-13 10:22:06 +08:00
* Fix flaky MoleculeConcurrentTest by replacing runTest with runBlocking runTest's StandardTestDispatcher has a dispatch timeout that conflicts with the test's use of real Dispatchers.Default, causing intermittent hangs in CI. runBlocking naturally blocks until the async work completes. Fixes #613 * wraps assertions in try/finally to ensure job cleanup even on failure.