spek
spek copied to clipboard
A specification framework for Kotlin
Correct me if I'm wrong, but it seems like Intellij doesn't support Spek as a first-class testing framework. `Ctrl+Shift+T -> Create New Test... -> Testing library` Spek is not on...
Whenever I try to run any spek test from IntelliJ IDEA - I got "Test framework quit unexpectedly". Running same tests from command line via `./gradlew :library:core:test` produces test results....
I'm getting the following error: `No instrumentation registered! Must run under a registering instrumentation.` when running this test: ``` class EnvironmentSpec : Spek({ Feature("Environment Initialization Test") { val context =...
In. [Setting up for JVM](https://github.com/spekframework/spek/blob/de012e9392352fbd0ed507f290d9fa1e46cda966/docs/setup-jvm.md) documentation, I'd like to add a comment in maven example like gradle one. ( I guess `kotlin-reflect` is often used in compile scope. ) ```diff...
Spek plugin for Android Studio displays run button for individual tests in `test` sources (Unit Tests):  However, in `androidTest` sources (instrumented tests), buttons are missing:  Instrumented tests on...
Is there an option to add function similar to wrap function found at v1? Source: spek/spek-api/src/main/kotlin/org/jetbrains/spek/api/Spek.kt Thanks
The story started here: https://github.com/spekframework/spek/issues/773 Issue is with running one Spek test from another one via configuration option:  I've created small sample project, please take a look....
Currently, Spek doesn't play well with [Robolectric](http://robolectric.org/) :disappointed: The reason is that Robolectric requires a `BlockJUnit4ClassRunner`, but Spek requires its own `JUnitClassRunner`. The exception thrown is: ``` java.lang.Exception: No runnable...
Dear Maintainers :) Thank you for the awesome library. I've been using Spek2 for more than few months, I'd like the Scoping features, Specification formats, faster execution time etc., In...
I see there was previously an issue that is now closed on the Kotlin1.3 multiplatform support. I also see there are artifacts for each platform on maven. However what is...