main function

void main()

Implementation

void main() {
  convenientTestMain(ActerConvenientTestSlot(), () {
    // Minimal
    group('Smoke', smokeTests);

    // Regular infrastructure
    group('Auth', authTests);
    group('Subspace', subSpaceTests);
    group('SuperInvites', superInvitesTests);

    // specific unique features
    group('Updates', updateTests);
    group('Events', eventsTests);
    group('Tasks', tasksTests);
    group('Pins', pinsTests);
    group('Attachments', attachmentTests);

    // further infrastructure

    group('Bug Reporting', bugReporterTests);
  });
}