This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 8b436498f3a2d66c30aa65c101fcfbd629abf69b Author: James Netherton <[email protected]> AuthorDate: Thu Jan 15 07:02:31 2026 +0000 Disable Langchain4jAgentTest.agentWithMcpClient due to #8153 --- .../quarkus/component/langchain4j/agent/it/Langchain4jAgentTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/langchain4j-agent/src/test/java/org/apache/camel/quarkus/component/langchain4j/agent/it/Langchain4jAgentTest.java b/integration-tests/langchain4j-agent/src/test/java/org/apache/camel/quarkus/component/langchain4j/agent/it/Langchain4jAgentTest.java index b68dc89859..818d1c53a8 100644 --- a/integration-tests/langchain4j-agent/src/test/java/org/apache/camel/quarkus/component/langchain4j/agent/it/Langchain4jAgentTest.java +++ b/integration-tests/langchain4j-agent/src/test/java/org/apache/camel/quarkus/component/langchain4j/agent/it/Langchain4jAgentTest.java @@ -23,6 +23,7 @@ import org.apache.camel.quarkus.component.langchain4j.agent.it.guardrail.Validat import org.apache.camel.quarkus.component.langchain4j.agent.it.guardrail.ValidationFailureOutputGuardrail; import org.eclipse.microprofile.config.ConfigProvider; import org.junit.jupiter.api.Assumptions; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -227,6 +228,7 @@ class Langchain4jAgentTest { "toolWasInvoked", is(true)); } + @Disabled("https://github.com/apache/camel-quarkus/issues/8153") @Test void agentWithMcpClient() { boolean isNodeJSInstalled = ConfigProvider.getConfig().getValue("nodejs.installed", boolean.class);
