How to run test in release mode

98 views Asked by At

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

0

There are 0 answers