This commit is contained in:
Alie 2023-12-31 12:29:31 +01:00
parent a59f951500
commit 106c1b8726
1 changed files with 2 additions and 10 deletions

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