diff --git a/spring-boot-nebula-web/pom.xml b/spring-boot-nebula-web/pom.xml
index 3a3c367..a7bb4f0 100644
--- a/spring-boot-nebula-web/pom.xml
+++ b/spring-boot-nebula-web/pom.xml
@@ -29,6 +29,12 @@
spring-boot-starter-actuator
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
org.projectlombok
lombok
diff --git a/spring-boot-nebula-web/src/test/java/Test.java b/spring-boot-nebula-web/src/test/java/Test.java
new file mode 100644
index 0000000..7492a48
--- /dev/null
+++ b/spring-boot-nebula-web/src/test/java/Test.java
@@ -0,0 +1,13 @@
+/**
+ * @author : wh
+ * @date : 2023/12/26 15:13
+ * @description:
+ */
+public class Test {
+
+ @org.junit.jupiter.api.Test
+ public void test() {
+ System.out.println("hahah");
+
+ }
+}