spek icon indicating copy to clipboard operation
spek copied to clipboard

A specification framework for Kotlin

Results 103 spek issues
Sort by recently updated
recently updated
newest added

Maybe similar to #566 but opening it nonetheless as it does not seem to be fixed. Following the use case: - JVM platform - one forgets to add `runtimeOnly "org.spekframework.spek2:spek-runner-junit5:$spek2_version"`...

status: triage

There are two plug-ins for Spek in the IntelliJ plug-in marketplace. One is clearly newer (Spek Framework) but it is confusing as to which to use: ![Screenshot 2019-07-09 14 59...

is: improvement

Hi is it possible or is in plans to create spek2 tests in intellij by CTR shift t - o am using both kotlin and kotlin framework plugin and. Can...

is: feature

The Current Spek plugin will not display any failures in the test tree (Only shows green ticks), but the window containing information on test runs will show failures. Spek version:...

Relates to #555. The current travis builds only runs on linux, we'd want to build for windows and osx as well.

is: chore

With the JVM, classpath entries that appear first in the list given to `-classpath` take precedence. However, the Spek Framework runner in IntelliJ/Android Studio appears to put `android.jar` first in...

Right now, Android Studio (3.4, `183.5429.30.34.5452501`) wants to install the `v2.0.2-IJ2018.3` version of the plugin. Doing so leads to some issues: - the run configurations are not compatible with the...

to align it with `CachingMode.SCOPE`.

is: improvement

Hi, In our code-base we found useful to write the following helper: ```kotlin fun LifecycleAware.memoizedCloseable(mode: CachingMode = defaultCachingMode, factory: () -> T) = memoized(mode = mode, factory = factory, destructor...

is: improvement

The syntax of `memoized` values provide a short and concise way of storing values, and it is much nicer than using lateinit vars and a `beforeEach` blocks. However because it...

is: improvement