smokeTests function

void smokeTests()

Implementation

void smokeTests() {
  acterTestWidget('register and login test smoketest', (t) async {
    final userId = await t.freshAccount();
    await t.logout();
    await t.login(userId);
  });
}