TF-4243 Add integration test on mobile for case delete_a_label

This commit is contained in:
dab246
2026-01-12 16:56:08 +07:00
committed by Dat H. Pham
parent 9760b6f077
commit f1feb6225d
3 changed files with 85 additions and 0 deletions
@@ -0,0 +1,10 @@
import '../../base/test_base.dart';
import '../../scenarios/labels/delete_a_tag_scenario.dart';
void main() {
TestBase().runPatrolTest(
description:
'Should delete label in label list when delete a label successfully',
scenarioBuilder: ($) => DeleteATagScenario($),
);
}