Adam

Results 225 issues of Adam

Hi, I thought I'd make a PR directly rather than an issue - I hope that's okay. I noticed the Gradle build files had some repetition that could be tidied...

At the moment one of the examples in the docs doesn't compile https://github.com/krzema12/github-actions-kotlin-dsl/blob/32576f647c533f087eed07a93564a56f418d78cd/docs/user-guide/getting_started.md?plain=1#L35-L45 ```kotlin job(name = "test_job", runsOn = UbuntuLatest) { // Error: No value passed for parameter 'id' ```...

enhancement

When I run this example https://kotlinlang.org/docs/shared-mutable-state-and-concurrency.html#volatiles-are-of-no-help it regularly returns the exact amount, 100000. See also: https://old.reddit.com/r/Kotlin/comments/v4j01h/volatile_works_in_coroutine/ This seems to happen more often when I run the code on my mobile......

I have a test that checks to see if a string is in the captured output. I expect this to work because `CapturedOutput` implements `CharSequence`. However, the test hangs indefinitely....

status: waiting-for-triage
status: feedback-provided

The docs have examples that use the null-safe accessor `?.` https://kotest.io/docs/assertions/json-matchers.html#shouldcontainjsonkey https://github.com/kotest/kotest/blob/b832d4941ecc45074bcd6dea3f24d16553f2fc21/doc/matchers/json.md?plain=1#L8 If the `json` variable is null then the assertion won't be called. I think that's a bit confusing...

documentation

WIP fixes for #3103 I'm probably not going to work more on this, but I hope it can help anyone who does want to pick it up. * Re-enabled tests,...

**Which version of Kotest are you using** 5.3.2 I want to verify that a JSON object does not contain duplicated fields. However `shouldBeValidJson()` and `shouldEqualJson()` do not throw errors. I...

assertions 🔍
pinned 📌
blocked :no_entry_sign:

Hi, I've been looking at using this project and I see that the Gradle config could be improved. I like fixing Gradle, so I'm happy to make a PR. Here's...

Hi, I saw this note in the source code about marking which dependencies should be introspected. https://github.com/JetBrains-Research/reflekt/blob/4e07ffd7897d2aabd5e6de878e4382ce3706b832/gradle-plugin/src/main/kotlin/org/jetbrains/reflekt/plugin/ReflektSubPlugin.kt#L121 I think a better way would be to use [Gradle variant attributes](https://docs.gradle.org/current/userguide/variant_model.html#sec:variant-aware-matching). The...

Fixes #99 Lots of changes! Please let me know if I can explain anything further, or change the PR so it's easier to manage. It includes PR #101 and #103...