diff --git a/Emulator/pom.xml b/Emulator/pom.xml
index 3d2eec4c..9cdbb427 100644
--- a/Emulator/pom.xml
+++ b/Emulator/pom.xml
@@ -62,6 +62,12 @@
public
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 3.2.5
+
@@ -172,12 +178,20 @@
0.4
-
org.eclipse.angus
jakarta.mail
2.0.3
+
+
+
+ org.junit.jupiter
+ junit-jupiter
+ 5.10.2
+ test
+
diff --git a/Emulator/src/test/java/com/eu/habbo/SmokeTest.java b/Emulator/src/test/java/com/eu/habbo/SmokeTest.java
new file mode 100644
index 00000000..15b142ee
--- /dev/null
+++ b/Emulator/src/test/java/com/eu/habbo/SmokeTest.java
@@ -0,0 +1,11 @@
+package com.eu.habbo;
+
+import org.junit.jupiter.api.Test;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+class SmokeTest {
+ @Test
+ void harnessRuns() {
+ assertTrue(true);
+ }
+}