TF-3515 Integration test save email as template

This commit is contained in:
DatDang
2025-02-26 10:31:12 +07:00
committed by Dat H. Pham
parent 7f09f9ceb4
commit df53ce1821
3 changed files with 65 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/save_as_template_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should save email as template successfully',
scenarioBuilder: ($) => SaveAsTemplateScenario($),
);
}