46f688ac12
BREAKING CHANGE: * chore: remove files that are not necessary for api v2 * test: update existing tests to use pkg * feat: organized aniwatch api envs and add more info about them * feat: update tsconfig to include strict noUnsed params * feat(api homepage): revamp api home page * feat: update wani kuni image * feat: add dot img * feat: use hono cors * feat: use hono rate limiter * build: remove unnecessary deps, add ones needed and update description * feat: add hianime routes and their handlers * feat: update vercel deployment file * docs: update logo and scraper docs, add envs section * feat: update main server file * feat: update peronal deployments caution section
18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
import { expect, test } from "vitest";
|
|
import { HiAnime } from "aniwatch";
|
|
|
|
const padZero = (num: number) => (num < 10 ? `0${num}` : num.toString());
|
|
|
|
const d = new Date();
|
|
const date = `${d.getFullYear()}-${padZero(d.getMonth() + 1)}-${padZero(
|
|
d.getDate()
|
|
)}`;
|
|
|
|
// npx vitest run estimatedSchedule.test.ts
|
|
test(`GET /api/v2/hianime/schedule?date=${date}`, async () => {
|
|
const hianime = new HiAnime.Scraper();
|
|
const data = await hianime.getEstimatedSchedule(date);
|
|
|
|
expect(data.scheduledAnimes).not.toEqual([]);
|
|
});
|