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 2 additions and 10 deletions
Showing only changes of commit 106c1b8726 - Show all commits

View File

@ -1,11 +1,4 @@
import {
afterEach,
beforeAll,
describe,
expect,
it,
mock,
} from "bun:test";
import { afterEach, beforeAll, describe, expect, it, mock } from "bun:test";
import request, { Response } from "supertest";
import app, { startApp } from "../src/app";
import imageService from "../src/services/ImageService";
@ -86,8 +79,7 @@ describe("GET /images works properly", async () => {
},
}));
const res = await request(app)
.get("/images");
const res = await request(app).get("/images");
expect(res.status).toBe(500);
});