v1.0.0 #28

Merged
bizcochito merged 147 commits from develop into main 2024-01-14 19:49:34 +00:00
1 changed files with 1 additions and 4 deletions
Showing only changes of commit 7689cb28a3 - Show all commits

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