hi all! I’m trying to create my first test: a simp...
# ktor
m
hi all! I’m trying to create my first test: a simple one like
Copy code
class ApplicationKtTest {
    @Test
    fun test1() = withTestApplication({ module(testing = true) }) {
        with(handleRequest(HttpMethod.Get, "/")) {
            assertEquals(HttpStatusCode.OK, response.status())
        }
    }
}
but I get
Copy code
Execution failed for task ':test'.
> No tests found for given includes: [ApplicationKtTest.test1](filter.includeTestsMatching)
e
@snrostov
m
it seems there was a problem with the
Spek
framework, as I removed the gradle dependency and now it works ¯\_(ツ)_/¯
👍 1
but thanks anyways!