kotest-intellij-plugin
kotest-intellij-plugin copied to clipboard
The official Kotest plugin for Intellij and Android Studio
Hello. Faced such a problem: When using annotation spec, IDEA marks test functions as unused  Also, functions that use other annotations are also marked as unused.   On...
Regular JUnit tests have `@argfile` shorten option:  But this is not available on the Kotest run configuration:  Interestingly enough, this option does appear on the Kotest configuration template,...
I'm new to kotest and started trying to add kotest to a multiplatform library of mine. running `gradle :allTests` seems to work fine, but I'm really struggling to run. Here's...
Hi! I can't run using the IntelliJ on Windows with all environments set to WSL2, it doesn't happen if I use a simple test with JUnit. Error running 'FakeTempGisModelTest': Cannot...
This plugin works amazing with gradle. Is it possible to extend this to get it to work with Bazel. Plugin already does the heavy lift of identifying the specs and...
Since 2020.3, IntelliJ reports an exception from the Kotest plugin: ```stacktrace com.intellij.openapi.util.TraceableDisposable$DisposalException: library LibraryId(name=Gradle: kaptGeneratedClasses, tableId=ModuleLibraryTableId(moduleId=ModuleId(name=my-project.test))) already disposed: --------------Creation trace: java.lang.Throwable at com.intellij.openapi.util.TraceableDisposable.(TraceableDisposable.java:30) at com.intellij.workspaceModel.ide.impl.legacyBridge.library.LibraryBridgeImpl.(LibraryBridgeImpl.kt:50) at com.intellij.workspaceModel.ide.impl.legacyBridge.module.roots.ModifiableModuleLibraryTableBridge.(ModifiableModuleLibraryTableBridge.kt:33) at com.intellij.workspaceModel.ide.impl.legacyBridge.module.roots.ModifiableRootModelBridgeImpl.(ModifiableRootModelBridgeImpl.kt:86) at...
For JUnit tests, results of last run are displayed alongside the test's code:  But for Kotest it will always display just the green run arrow:  I'm pretty sure...
Announced today - https://blog.jetbrains.com/idea/2024/03/k2-kotlin-mode-alpha-in-intellij-idea/ the K2 compiler is available in Intellij 2024.1 RC, but kotest plugin fails to install: `Plugin is incompatible with the Kotlin plugin in K2 mode`
An attempt to resolve https://github.com/kotest/kotest-intellij-plugin/issues/266. I am actually not sure if this resolves the original issue. I tried the snapshot of the plugin locally and it did not help. This...
``` class KoTest : ShouldSpec({ class Data(val expected: IntArray) : WithDataTestName { override fun dataTestName() = "result should be (${expected.joinToString()})" } context("KoTestContext(a)") { withData(sequence { yield(Data(intArrayOf())) yield(Data(intArrayOf(1))) }) { fail("")...