diff --git a/tests/app.test.ts b/tests/app.test.ts index 189b844..d7c78f7 100644 --- a/tests/app.test.ts +++ b/tests/app.test.ts @@ -52,11 +52,8 @@ describe("/login works as instended", async () => { describe("GET / shows all of the endpoints", async () => { const res = await request(app).get("/"); - it("should be", async () => { + it("should have the endpoints in the `endpoints` property, as an array", async () => { expect(res.body).toHaveProperty("endpoints"); - }); - - it("should be an array", () => { expect(Array.isArray(res.body.endpoints)).toBeTrue(); }); });