Sam

Results 619 comments of Sam

Is this using gradle or running using the play button in the editor ?

This is fixed in master, so will go out with the RC candidate.

What's happening is the testApplication {} is creating a coroutine which registers tests, then exits. By the time the tests then run, the coroutine has ended. You need to use...

If it's not valid json, then you wouldn't be able to make a Json object from it ?

So the matcher would be the json is invalid according to the json spec, but valid according to kotlinx ?

I don't think we should add a matcher that checks if kotlinx.serialization is following the spec. Should file a bug over there?

There's certainly a possibility for a race condition bug here, from the internal comments: ``` // check if we need to run beforeSpec and if so do inside the mutex...

I think it might be possible when using multiple threads, that these variables are not being synchronized properly. ```kotlin internal data class BeforeSpecState( val errors: MutableList, val success: MutableSet, val...

Yeah kotest plugin doesn't use gradle, so anything setup there won't work.

Can you try the latest snapshot from https://s01.oss.sonatype.org/content/repositories/snapshots/com/sksamuel/aedile/aedile-core/ And update to use Caffeine.newBuilder directly, add in your config, then call .asCache or .asLoadingCache. No other changes needed. If you're happy...