Mike Trewartha

Results 25 comments of Mike Trewartha

@noff, did you ever find anything that was causing this for you or that fixed it?

@noff, we wasted many hours on this yesterday. Thankfully, we ended up finding that we were missing the `shards` key in the YML file. So, instead of the shards.yml you...

EDIT: We were confused by a few different configs we had seen for this, but it turns out that you do _not_ needs `shards` in there. @thiagopradi Can we get...

Yeah, sorry, we actually just found out that adding `shards` does not fix it. It was definitely the `Rake::Task["db:load_config"].enhance [:environment]` bit that was hosing us. We also ended up finding...

I'll second this. We're investing heavily in Kotlin multi-platform libraries that are published for use on Android and the JVM, but we'll be publishing them for iOS soon, too.

We have a need for the ability to swap between various pools at runtime, too. We use a separate identity pool for each backend environment and we also provide internal...

I would agree with this, especially given the point about threads that @matejdro made and the fact that this library is written to make working with Mockito and Kotlin easier....

We can debate what to call this ("bug" or "not a bug") all we want, but it doesn't really matter. The important thing is that we're looking for a way...

@bohsen all of those make sense, but I'm looking for a way to mock a suspend function for a mock I created further up in a test (in some contextual...

Here's another example of something related that I'm stuck on: ```kotlin object SubjectClassSpec : Spek({ val mockDependency by memoized { mock() } val subject by memoized { SubjectClass(mockDependency) } describe("doing...