1 files changed, 12 insertions, 0 deletions
diff --git a/api/tests/routes/ping.test.js b/api/tests/routes/ping.test.js
new file mode 100644
index 00000000..6fa4b160
--- /dev/null
+++ b/api/tests/routes/ping.test.js
@@ -0,0 +1,12 @@
+const supertest = require("supertest");
+const request = supertest("http://localhost:3001");
+
+describe("/ping", () => {
+ describe("GET", () => {
+ test("should return 200 and pong", async () => {
+ let response = await request.get("/api/ping");
+ expect(response.text).toBe("pong");
+ expect(response.statusCode).toBe(200);
+ });
+ });
+});
|