TF-4229 Add integration test on mobile for case edit_a_tag_scenario

This commit is contained in:
dab246
2026-01-07 16:06:39 +07:00
committed by Dat H. Pham
parent 7b250f911b
commit 5a0929bff2
8 changed files with 140 additions and 0 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/labels/edit_a_tag_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'Should update label display name when edit a label successfully',
scenarioBuilder: ($) => EditATagScenario($),
);
}