Shortened and detailed the test on "/" endpoint

This commit is contained in:
Sugui 2024-01-07 12:37:03 +01:00
parent b3b11616bf
commit 7689cb28a3
1 changed files with 1 additions and 4 deletions

View File

@ -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();
});
});