fix: format gif-provider.test.ts with Prettier

This commit is contained in:
J3vb
2026-04-03 16:59:10 +02:00
parent ae6ee0b06d
commit 1fccb1cb9f
@@ -139,9 +139,7 @@ describe("searchGifs", () => {
});
it("maps multiple results in order", async () => {
mockFetch.mockResolvedValue(
okResponse([gifResult("a"), gifResult("b"), gifResult("c")]),
);
mockFetch.mockResolvedValue(okResponse([gifResult("a"), gifResult("b"), gifResult("c")]));
const gifs = await searchGifs("cats");
expect(gifs.map((g) => g.id)).toEqual(["a", "b", "c"]);
});