TF-4227 Add integration test on mobile for case display_empty_view_when_open_tag_scenario

This commit is contained in:
dab246
2026-01-07 12:23:08 +07:00
committed by Dat H. Pham
parent 2052fdbe5e
commit acd8a6c4f1
2 changed files with 106 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/labels/display_empty_view_when_open_tag_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should display empty view when open tag with no email',
scenarioBuilder: ($) => DisplayEmptyViewWhenOpenTagScenario($),
);
}