Patrick Ramsey
08/26/2021, 1:02 AM@Test fun `this seems like it shouldnt fail`() = runBlockingTest {
val c = Channel<Unit>()
c.send(Unit)
}
Running this test, all on its own, fails with IllegalStateException: “This job has not completed yet”. Why would that be?