JetBrains / intellij-ui-test-robot

The library allows you to write and execute UI tests among IntelliJ IDEA. You can test your Plugin.

Home Page:https://jetbrains-platform.slack.com/archives/C026SVA9MMM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Process stops when runIdeForUiTests is launched with gradlew

nizienko opened this issue · comments

If using the gradlew for runIdeForUiTests the process just stops, if its launched like that

I just encountered the same situation. The documentation claims that this would work:

./gradlew clean runIdeForUiTest & ./gradlew test

But with a single ampersand Gradle is just backgrounded and there is no feedback when is is actually save to start the UI test.

If you could terminate the Gradle process after the UI server is running, then using a double ampersand this command could actually work.

But that also requires a way to get rid of the running process later after the test. Even in case of tests failures.