Skip to content

Commit 151740d

Browse files
committed
Add quarkus-vertx-http-deployment to documentation on testing of Dev UI in extensions
1 parent 73e1d2e commit 151740d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/src/main/asciidoc/dev-ui.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,17 @@ public boolean updateProperties(String content, String type) {
13191319

13201320
To test that `updateProperties` executes correctly via JsonRPC, you can add a test that extends `DevUIJsonRPCTest`.
13211321

1322+
The following dependency might also be required to be added to your pom, if it's not yet added by other dependencies, otherwise Dev UI will not start during testing:
1323+
1324+
[source,xml]
1325+
----
1326+
<dependency>
1327+
<groupId>io.quarkus</groupId>
1328+
<artifactId>quarkus-vertx-http-deployment</artifactId>
1329+
<scope>test</scope>
1330+
</dependency>
1331+
----
1332+
13221333
[source,java]
13231334
----
13241335
public class SomeTest extends DevUIJsonRPCTest {

0 commit comments

Comments
 (0)