aboutsummaryrefslogtreecommitdiff
path: root/apps/cf-ai-backend/src/index.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cf-ai-backend/src/index.test.ts')
-rw-r--r--apps/cf-ai-backend/src/index.test.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/cf-ai-backend/src/index.test.ts b/apps/cf-ai-backend/src/index.test.ts
deleted file mode 100644
index bbf66fb5..00000000
--- a/apps/cf-ai-backend/src/index.test.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import app from ".";
-
-// TODO: write more tests
-describe("Test the application", () => {
- it("Should return 200 response", async () => {
- const res = await app.request("http://localhost/");
- expect(res.status).toBe(200);
- }),
- it("Should return 404 response", async () => {
- const res = await app.request("http://localhost/404");
- expect(res.status).toBe(404);
- });
-});