I have implemented automated tests in flutter using flutter gherkin and cucumber using flutter_gherking library. I am not sure if it's possible to run all these integration tests in any CI/CD tools i.e codemagic or anywhere else. The goal is to automate and run all integration tests in a remote system before pushing it to production. Any workaround or steps will be highly appreciated.
Asked
Active
Viewed 310 times
1 Answers
1
Yes, you can use bitrise or firebase.
If your tests are written using flutter integration test you can follow this documentation.
If you use bitrise, before running the "Xcode test" step you may need to run:
flutter build ios --config-only integration_test/foo_test.dart
in the flutter build step.

Ethan
- 876
- 8
- 18
- 34