You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/08/02 06:40:14 UTC

[camel-quarkus] 02/02: Temporarily disable JavaScriptDslTest #2968

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 8dbac9938981b52627ee91528fbf1a0e8f65a862
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Aug 2 07:39:46 2021 +0100

    Temporarily disable JavaScriptDslTest #2968
---
 .../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 06f73dd..89c69e4 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.DisabledOnNativeImage;
 import io.quarkus.test.junit.NativeImageTest;
 
+@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/2968")
 @NativeImageTest
 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 a2e1303..c0d6975 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,10 +22,12 @@ 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;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/2968")
 @QuarkusTest
 public class JavaScriptDslTest {
     @Test