Ivan “CLOVIS” Canet

Results 63 issues of Ivan “CLOVIS” Canet
trafficstars

Hi! I'm using the version 2.0.0. In CI, I'm seeing: ``` * What went wrong: Execution failed for task ':compat:compat-ktor:dokkatooGeneratePublicationHtml'. > A failure occurred while executing dev.adamko.dokkatoo.workers.DokkaGeneratorWorker > Java heap...

documentation

**Which version of Kotest are you using** 5.8.1 Reproducer: ```kotlin class KotestTest : StringSpec({ addTest(TestName("test"), disabled = false, config = TestConfig(timeout = 120.seconds, coroutineTestScope = true, testCoroutineDispatcher = true)) {...

enhancement ✨
framework 🏗️

**Which version of Kotest are you using** 5.7.2 Running the following script: ```sh $ git clone [email protected]:kotest/kotest-examples-javascript.git [...] $ cd kotest-examples-javascript $ ./gradlew check --rerun-tasks --info [...] > Task :jsBrowserTest...

question ❓
multiplatform-javascript 🌐

## 🐛 Describe the bug When importing the plugin, the build fails with ``` FAILURE: Build failed with an exception. * What went wrong: Configuration cache problems found in this...

Hi! @nomisRev asked for help with the Gradle setup of Arrow, and I'm interested in helping. However, I'm not too familiar with the existing setup nor what you expect, so...

Prototype for SuspendExact, which aims to allow validation using external services (e.g. verify that an ID does in fact exist). Closes #33

Can someone who has the coding style used in this repository add it in `.idea`? It's inconvenient to try to guess how to format code.

Although arrow-exact is originally meant for type refinements, our current DSL can handle any kind of validation. In my projects, I have two major kinds of validation needs: pure and...

Here's a pattern I have seen multiple times in Compose application (and personally use :smile:). ### Current situation We have a form with two values, a username and a password....

KotlinX.Serialization has a great serialization story with regular Kotlin: ```kotlin @Serializable class Foo( val username: String, ) { init { ensure(' ' !in username) { "The username cannot contain whitespace"...