startAppForTesting function

Future<void> startAppForTesting(
  1. dynamic app
)

Implementation

Future<void> startAppForTesting(Widget app) async {
  // make sure our test isn’t distracted by the onboarding wizzards
  setCreateOrJoinSpaceTutorialAsViewed();
  setBottomNavigationTutorialsAsViewed();
  setSpaceOverviewTutorialsAsViewed();
  return await _startAppInner(app, false);
}