I had a bug on a Flutter project I'm working on that was only happening in release mode.
When running the application with
flutter run
everything was working fine.
The bug was only there with
flutter run --release
I would want to write a test about the fix. How do I run the test in release mode?
I don't see an option --release
that I could use with flutter test