I’m currently migrating from spek1 to spek2: ``` ...
# spek
a
I’m currently migrating from spek1 to spek2:
Copy code
<dependency>
      <groupId>org.spekframework.spek2</groupId>
      <artifactId>spek-dsl-jvm</artifactId>
      <version>${spek.version}</version>
      <scope>test</scope>
      <type>pom</type>
    </dependency>
    <!-- <https://mvnrepository.com/artifact/org.spekframework.spek2/spek-runner-junit5> -->
    <dependency>
      <groupId>org.spekframework.spek2</groupId>
      <artifactId>spek-runner-junit5</artifactId>
      <version>${spek.version}</version>
      <scope>test</scope>
    </dependency>
This results in none of my tests being run, as they aren’t found. What’s going on?
r
have you specified the following in your build.gradle?
Copy code
test {
    useJUnitPlatform {
        includeEngines 'spek2'
    }
}
a
@robstoll: is there a pom.xml equivalent?