TF-3691 Add integration test for case search snippets with html escape

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-24 03:05:26 +07:00
committed by Dat H. Pham
parent ac569387d4
commit 4160729bd6
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,9 @@
import '../../base/test_base.dart';
import '../../scenarios/search/search_snippets_with_html_escape_scenario.dart';
void main() {
TestBase().runPatrolTest(
description: 'Should see email with subject escaped when search email successfully',
scenarioBuilder: ($) => SearchSnippetsWithHtmlEscapeScenario($),
);
}