Hi, can anyone share the git samples of unit testi...
# server
a
Hi, can anyone share the git samples of unit testing the ktor application/kotlin fullstack app? I was trying to test the controller
Copy code
@Test
    fun testRequests() {
        
        withTestApplication({ main() }) {
            with(handleRequest(HttpMethod.Get, Resource.path)) {

                assertEquals(HttpStatusCode.OK, response.status())
            }
        }
    }
and using mockk.io to mock the other layers but looks like it is not working, it is still trying to connect to actual DB and runs the server at given port if I just remove db related connection initializations..