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
2025-05-12 00:06:55 +05:30

11 lines
299 B
TypeScript

import { expect, test } from "vitest";
import { HiAnime } from "aniwatch";
// npx vitest run animeAZList.test.ts
test("returns az list anime", async () => {
const hianime = new HiAnime.Scraper();
const data = await hianime.getAZList("0-9", 1);
expect(data.animes).not.toEqual([]);
});