Doug Smith
Doug Smith
I was able to make it work by deleting `yarn.lock` and `yarn.locker` and re-running `yarn install`.
I'm also blocked writing a test like this because of this problem. Any plans to fix it?
Thank you @Sami32. It looks to me that something more like @rekire's solution would work better for Android, though. Am I missing something?
Thank you for the quick response, @jhalterman. `System.nanoTime()` is a native method, and MockK doesn't mock native methods. `Instant.now()` is static but not native, so it is easily mockable by...
I wasn't thinking about mocking `OpenState`. I was thinking of mocking `java.time.Instant`, unless you do provide a way to inject a `Clock`. Here's an example of what I'd like to...
I have the same error when using compose `2023.10.01`.
I wrote the duplicate #7185 before I knew about this one. Thank you for looking into this!
Is this disabled just in coroutines, or across all of Kotlin? I have this build.gradle.kts config in an Android project and am no longer seeing errors for Kotlin compiler warnings:...
> [@dugsmith](https://github.com/dugsmith), it's disabled just for our development process, any other repository should not be affected. Weird ... I wonder why it stopped working on our project. Guess I need...