Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions manifests/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ refs:
- &ref_5_81_0 '>=5.81.0'
- &ref_5_82_0 '>=5.82.0'
- &ref_5_83_0 '>=5.83.0'
- &ref_5_85_0 '>=5.85.0' # Debugger: Capture expressions support
manifest:
tests/ai_guard/test_ai_guard_sdk.py::Test_ContentParts: missing_feature
tests/ai_guard/test_ai_guard_sdk.py::Test_Evaluation:
Expand Down Expand Up @@ -1371,6 +1372,16 @@ manifest:
tests/auto_inject/test_auto_inject_install.py::TestContainerAutoInjectInstallScriptAppsec: *ref_5_43_0
tests/auto_inject/test_auto_inject_install.py::TestHostAutoInjectInstallScriptAppsec: *ref_5_43_0
tests/auto_inject/test_auto_inject_install.py::TestSimpleInstallerAutoInjectManualAppsec: *ref_5_43_0
tests/debugger/test_debugger_capture_expressions.py::Test_Debugger_Line_Capture_Expressions:
- weblog_declaration:
"*": irrelevant
express4: *ref_5_85_0
express4-typescript: *ref_5_85_0
express5: *ref_5_85_0
fastify: *ref_5_85_0
nextjs: irrelevant
uds-express4: *ref_5_85_0
tests/debugger/test_debugger_capture_expressions.py::Test_Debugger_Method_Capture_Expressions: missing_feature
tests/debugger/test_debugger_code_origins.py::Test_Debugger_Code_Origins:
- weblog_declaration:
"*": irrelevant
Expand Down
1 change: 0 additions & 1 deletion tests/debugger/test_debugger_capture_expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def test_complex_capture_expressions(self):
@features.debugger_line_probe
@scenarios.debugger_probes_snapshot
@missing_feature(context.library == "php", reason="Not yet implemented", force_skip=True)
@missing_feature(context.library == "nodejs", reason="Not yet implemented", force_skip=True)
@missing_feature(context.library == "golang", reason="Not yet implemented", force_skip=True)
@missing_feature(context.library < "java@1.59.0", reason="DEBUG-4929", force_skip=True)
class Test_Debugger_Line_Capture_Expressions(BaseDebuggerCaptureExpressionsTest):
Expand Down
3 changes: 1 addition & 2 deletions tests/debugger/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ class BaseDebuggerTest:
rc_states: list[remote_config.RemoteConfigStateResults] = []
prev_payloads: list[dict[str, Any]] = []
weblog_responses: list = []

setup_failures: list
setup_failures: list = []

use_debugger_endpoint: bool = False

Expand Down
Loading