From 7018e9fdca89e85569674e0baef2daa89c520490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Vav=C5=99=C3=ADk?= Date: Wed, 5 Apr 2023 12:46:56 +0200 Subject: [PATCH] Disable DEV mode continuous testing scenarios due to upstream re-working --- .../src/test/java/io/quarkus/qe/DevModeGreetingResourceIT.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/greetings/src/test/java/io/quarkus/qe/DevModeGreetingResourceIT.java b/examples/greetings/src/test/java/io/quarkus/qe/DevModeGreetingResourceIT.java index 794df2fae..fd09b10e3 100644 --- a/examples/greetings/src/test/java/io/quarkus/qe/DevModeGreetingResourceIT.java +++ b/examples/greetings/src/test/java/io/quarkus/qe/DevModeGreetingResourceIT.java @@ -3,6 +3,7 @@ import static org.hamcrest.Matchers.is; import org.apache.http.HttpStatus; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.MethodOrderer; import org.junit.jupiter.api.Order; import org.junit.jupiter.api.Test; @@ -15,6 +16,8 @@ import io.quarkus.test.services.DevModeQuarkusApplication; import io.quarkus.test.utils.AwaitilityUtils; +// TODO: mvavrik enable and adapt to new continuous testing page +@Disabled("Disabled as DEV UI continuous testing is currently re-worked") @QuarkusScenario @DisabledOnNative @DisabledOnQuarkusVersion(version = "1\\..*", reason = "Continuous Testing was entered in 2.x")