https://kotlinlang.org logo
Title
k

keishi kubo

09/01/2021, 3:45 AM
I want to separate e2e test and unit test. How does everyone set up ??
a

Aleksei Tirman [JB]

09/01/2021, 8:57 AM
Could you please explain your question in the context of Ktor?
k

keishi kubo

09/03/2021, 6:58 AM
@Aleksei Tirman [JB] Thank you for replying I am running test with ./gradlew test command I think this is the feature of default test library for ktor. This run test under src/test directory, but I want to add another directly for test such as src/e2e and run test using another command.
a

Aleksei Tirman [JB]

09/03/2021, 7:16 AM
This is a feature of Gradle not of Ktor. You can use information from this article or any similar one to set a task for running e2e tests.
k

keishi kubo

09/17/2021, 9:25 AM
Sorry being late. I am happy to know that How to I approach this problem.