Skip to content

Commit 01df04a

Browse files
authored
add FFE capability support for Node.js (#5381)
1 parent b7d3dde commit 01df04a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/parametric/test_dynamic_configuration.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def get_sampled_trace(test_library, test_agent, service, name, tags=None):
204204
Capabilities.APM_TRACING_ENABLED,
205205
Capabilities.APM_TRACING_SAMPLE_RULES,
206206
Capabilities.ASM_AUTO_USER_INSTRUM_MODE,
207+
Capabilities.FFE_FLAG_CONFIGURATION_RULES,
207208
},
208209
"python": {Capabilities.APM_TRACING_ENABLED},
209210
"dotnet": {
@@ -255,6 +256,11 @@ class TestDynamicConfigTracingEnabled:
255256
@parametrize("library_env", [{**DEFAULT_ENVVARS}])
256257
@bug(context.library == "java", reason="APMAPI-1225")
257258
@missing_feature(context.library < "dotnet@3.29.0", reason="Added new capabilities", force_skip=True)
259+
@missing_feature(
260+
context.library == "nodejs",
261+
reason="Added new FFE flag capabilities, wait till it lands on v5.72.0 to reenable test",
262+
force_skip=True,
263+
)
258264
def test_default_capability_completeness(self, library_env, test_agent, test_library):
259265
"""Ensure the RC request contains the expected default capabilities per language, no more and no less."""
260266
if context.library is not None and context.library.name is not None:

0 commit comments

Comments
 (0)