Kyoo/api/tests/series/get-seasons.test.ts
2025-03-06 14:28:18 +01:00

27 lines
768 B
TypeScript

import { beforeAll, describe, expect, it } from "bun:test";
import { createSerie, getSeasons } from "tests/helpers";
import { expectStatus } from "tests/utils";
import { madeInAbyss } from "~/models/examples";
beforeAll(async () => {
await createSerie(madeInAbyss);
});
describe("Get seasons", () => {
it("Invalid slug", async () => {
const [resp, body] = await getSeasons("sotneuhn", { langs: "en" });
expectStatus(resp, body).toBe(404);
expect(body).toMatchObject({
status: 404,
message: expect.any(String),
});
});
it("Default sort order", async () => {
const [resp, body] = await getSeasons(madeInAbyss.slug, { langs: "en" });
expectStatus(resp, body).toBe(200);
expect(body.items).toBeArrayOfSize(madeInAbyss.seasons.length);
});
});