Search code examples
fluttertestingdartautomated-testsfeature-file

Flutter driver Test Explorer


is there a way to get some kind of Flutter Test Explorer into the IntelliJ IDE?

I am thinking of something like JUnit has in Visual Studio. Let's say that it should be something like this. My tests are stored in Feature Files.

enter image description here

If yes please send me a link to an addon or tool.

Thanks.

EDIT 1: I am talking about the tool which "sees" all feature files and scenarios in it before the run. User than can select which scenario will be executed from the list of scenarios.


Solution

  • If you run tests in IntelliJ you should see something very similar to what you have screen shotted above for VS. You may find if you're using a build tool (Gradle/Maven) that running tests defaults to using the build tool to do so but you can switch this back to IntelliJ alone. What are you currently seeing/not seeing in IntelliJ?

    See https://www.jetbrains.com/help/idea/performing-tests.html for more info + screen shot very similar to VS.