You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to specify the test to be executed directly in the command?
I would like to execute only the unit test associated with the specified code file.
For Example: dart run mutation_test lib/code_file.dart -test lib/code_file_test.dart
The text was updated successfully, but these errors were encountered:
It won't work if you want to use the mutation test in a CI environment.
If you try adding the following code to the tag in the XML file: flutter test $(echo $(git diff --name-only HEAD HEAD~1 | grep "test.dart$" | tr '\n' ' **'))**
The _addCommand method will split it by blank spaces, causing the code to malfunction:
Is it possible to specify the test to be executed directly in the command?
I would like to execute only the unit test associated with the specified code file.
For Example:
dart run mutation_test lib/code_file.dart -test lib/code_file_test.dart
The text was updated successfully, but these errors were encountered: