forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request quarkusio#35155 from phillip-kruger/dev-ui-remove-…
…dev-services Remove Old Dev UI: Core Dev Services
- Loading branch information
Showing
5 changed files
with
28 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 0 additions & 57 deletions
57
...ployment/src/main/resources/dev-templates/io.quarkus.quarkus-vertx-http/dev-services.html
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
extensions/vertx-http/deployment/src/test/java/io/quarkus/devui/DevServicesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package io.quarkus.devui; | ||
|
||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
|
||
import io.quarkus.devui.tests.DevUIBuildTimeDataTest; | ||
import io.quarkus.test.QuarkusDevModeTest; | ||
|
||
public class DevServicesTest extends DevUIBuildTimeDataTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusDevModeTest config = new QuarkusDevModeTest().withEmptyApplication(); | ||
|
||
public DevServicesTest() { | ||
super("devui"); | ||
} | ||
|
||
@Test | ||
public void testGetExtensions() throws Exception { | ||
JsonNode devServicesResponse = super.getBuildTimeData("devServices"); | ||
Assertions.assertNotNull(devServicesResponse); | ||
Assertions.assertTrue(devServicesResponse.isArray()); | ||
} | ||
|
||
} |
33 changes: 0 additions & 33 deletions
33
...ests/devmode/src/test/java/io/quarkus/test/devconsole/DevConsoleDevServicesSmokeTest.java
This file was deleted.
Oops, something went wrong.