Skip to content

Commit

Permalink
Disabled kamelet test unti CAMEL-21676 is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriOndrusek committed Jan 29, 2025
1 parent 06aecc9 commit bc28158
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ public void configure() throws Exception {
.to("kamelet:echo/1?prefix=Camel Quarkus&suffix=Chained")
.to("kamelet:echo/2?prefix=Hello&suffix=Route");

from("direct:kamelet-location-at-runtime")
.kamelet("upper?location=classpath:kamelets-runtime/upper-kamelet.xml");
// https://github.com/apache/camel-quarkus/issues/6951
// from("direct:kamelet-location-at-runtime")
// .kamelet("upper?location=classpath:kamelets-runtime/upper-kamelet.xml");

from("kamelet:greeting")
.to("seda:greeting");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.Matchers.is;
Expand Down Expand Up @@ -85,6 +86,7 @@ public void testInvoke() {
.body(is("Kamelet2-suffix"));
}

@Disabled //https://github.com/apache/camel-quarkus/issues/6951
@Test
public void testKameletLocationAtRuntime() {
RestAssured.given()
Expand Down

0 comments on commit bc28158

Please sign in to comment.