TF-4236 Add integration test on mobile for case remove_a_label_from_email_scenario

This commit is contained in:
dab246
2026-01-20 15:50:54 +07:00
committed by Dat H. Pham
parent b76df6a6f6
commit 326f5e46f5
4 changed files with 122 additions and 0 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/labels/remove_a_label_from_email_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'Should remove tag on email subject when click click on the cross on a tag in the opened mail',
scenarioBuilder: ($) => RemoveALabelFromEmailScenario($),
);
}