Ability to run multiple e2e test with different flavors #2133
Unanswered
Biplab-Dutta
asked this question in
Q&A
Replies: 1 comment 2 replies
-
I think that this is just a limitation of using flavors, because they are determined at build-time, instead of being able to change your environment during run-time. It's easier said than done, but if you had a debug menu that could programmatically switch your environments while the app is running, then you'd be able to achieve this by switching environments during an integration test. Sadly, I don't think its currently possible to do what your asking for in this post using flavors. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's consider I have two test files.
Is it possible to make configurations such that I get to run
file1_test.dart
with dev flavor and the other test with qa flavor? I don't want to keep running each test separately. I was looking for just one single command that i can use to run both these tests with different flavors.Beta Was this translation helpful? Give feedback.
All reactions