Running all Flutter unit tests from Visual Studio Code

Viewed 2317
  1. In Visual Studio Code, I see no GUI option to run all my Flutter unit tests. I have to individually select each test file, right click, and choose either 'Start debugging' or 'Start without debugging.'
  2. When the emulator is running, I am unable unable to do the above. I cannot run any unit tests from the GUI

My unit tests are located in the test directory and all end in '_test.dart'. To get around both of the above, I can run all the unit tests by doing flutter test from the terminal, but I was wondering if there was a GUI option.

This issue does not exist on Android Studio.

1 Answers
Related