<@U7TJY2ZD3> Brilliant, thanks a lot! So this now ...
# mockk
h
@oleksiyp Brilliant, thanks a lot! So this now works:
Copy code
val mockDate = Instant.parse("2014-12-03T10:15:30.00Z")

            mockkStatic(Instant::class)
            every { Instant.now() } returns mockDate
But I don’t understand why 😕