appLauncher function
Implementation
Future<void> appLauncher({
required Widget app,
required PatrolTester patrol,
}) async {
// ignore: invalid_use_of_protected_member
final history = AppJourneySteps.steps;
for (var journey in history) {
await journey.prepare(patrol);
}
await patrol.pumpWidget(app);
for (var journey in history) {
await journey.walk(patrol);
}
}