This repository has been archived on 2026-07-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
aniwatch-api/test/estimatedSchedule.test.ts
T
2024-03-03 23:10:49 +05:30

9 lines
283 B
TypeScript

import { expect, test } from "vitest";
import { scrapeEstimatedSchedule } from "../src/parsers/index.js";
test("returns estimated schedule anime release", async () => {
const data = await scrapeEstimatedSchedule("2024-03-30");
expect(data.scheduledAnimes).not.toEqual([]);
});