diff --git a/tests/test_rum_injection.py b/tests/test_rum_injection.py index 09368e82370..f174243a9f4 100644 --- a/tests/test_rum_injection.py +++ b/tests/test_rum_injection.py @@ -9,7 +9,7 @@ from utils import weblog, features -@features.not_reported +@features.rum_injection class Test_RUM_Injection: """Basic tests to verify RUM injection is working""" diff --git a/utils/_features.py b/utils/_features.py index 1cf9454c18c..9dcd7617050 100644 --- a/utils/_features.py +++ b/utils/_features.py @@ -2639,6 +2639,14 @@ def llm_observability_prompts(test_object): """ return _mark_test_object(test_object, feature_id=517, owner=_Owner.ml_observability) + @staticmethod + def rum_injection(test_object): + """RUM Injection + + https://feature-parity.us1.prod.dog/#/?feature=525 + """ + return _mark_test_object(test_object, feature_id=525, owner=_Owner.sdk_capabilities) + @staticmethod def apm_openai_completions(test_object): """APM supports OpenAI completions interactions