startFreshTestApp function

Future<void> startFreshTestApp(
  1. String key
)

Implementation

Future<void> startFreshTestApp(String key) async {
  TestWidgetsFlutterBinding.ensureInitialized();
  await ActerSdk.resetSessionsAndClients(key);
  await app.startAppForTesting(
    ConvenientTestWrapperWidget(child: app.makeApp()),
  );
}