eventsTests function

void eventsTests()

Implementation

void eventsTests() {
  acterTestWidget('Create Event', (t) async {
    // Create new event
    await t.createNewEvent();
  });

  acterTestWidget('Change Event RSVP Types', (t) async {
    // Create new event
    await t.createNewEvent();

    // Change event RSVP types
    await t.changeRsvpType();
  });

  acterTestWidget('Edit Event', (t) async {
    // Create new event
    await t.createNewEvent();

    // Edit Event
    await t.editEvent();
  });

  acterTestWidget('Delete Event', (t) async {
    // Create new event
    await t.createNewEvent();

    // Delete Event
    await t.deleteEvent();
  });
}