TF-3591 Integration test Calendar Event Counter email

This commit is contained in:
DatDang
2025-04-16 11:24:17 +07:00
committed by Dat H. Pham
parent 9df53ef6b9
commit 7f9dc67141
7 changed files with 1048 additions and 7 deletions
@@ -0,0 +1,11 @@
import '../../base/test_base.dart';
import '../../scenarios/calendar/calendar_event_counter_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see yes and mail to attendees buttons '
'and should not see no and maybe buttons '
'when user view calendar event counter email',
scenarioBuilder: ($) => CalendarEventCounterScenario($),
);
}