This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit bdd275c1b7640c2f99243f08d39373b7cff1b758 Author: James Netherton <[email protected]> AuthorDate: Mon May 9 09:08:10 2022 +0100 Temporarily disable js-dsl tests due to Camel Graal JS incompatibilities --- .../src/test/java/org/apache/camel/quarkus/js/JavaScriptDslIT.java | 2 ++ .../src/test/java/org/apache/camel/quarkus/js/JavaScriptDslTest.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslIT.java b/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslIT.java index 53e7cb36ba..e774cc47c2 100644 --- a/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslIT.java +++ b/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslIT.java @@ -16,8 +16,10 @@ */ package org.apache.camel.quarkus.js; +import io.quarkus.test.junit.DisabledOnIntegrationTest; import io.quarkus.test.junit.QuarkusIntegrationTest; @QuarkusIntegrationTest +@DisabledOnIntegrationTest public class JavaScriptDslIT extends JavaScriptDslTest { } diff --git a/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslTest.java b/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslTest.java index a2e1303227..e49d691b23 100644 --- a/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslTest.java +++ b/integration-tests/js-dsl/src/test/java/org/apache/camel/quarkus/js/JavaScriptDslTest.java @@ -22,11 +22,13 @@ import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; import org.apache.camel.dsl.js.JavaScriptRoutesBuilderLoader; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; @QuarkusTest +@Disabled public class JavaScriptDslTest { @Test public void testJavaScriptRoutes() {
