test: update tests directory

This commit is contained in:
Ritesh Ghosh
2025-05-12 00:03:39 +05:30
parent a72f469f40
commit 468a6e3ef9
12 changed files with 0 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { HiAnime } from "aniwatch";
import { expect, test } from "vitest";
const animeId = "steinsgate-3";
// npx vitest run animeAboutInfo.test.ts
test(`GET /api/v2/hianime/anime/${animeId}`, async () => {
const hianime = new HiAnime.Scraper();
const data = await hianime.getInfo(animeId);
expect(data.anime.info.name).not.toEqual(null);
expect(data.recommendedAnimes).not.toEqual([]);
expect(data.mostPopularAnimes).not.toEqual([]);
expect(Object.keys(data.anime.moreInfo)).not.toEqual([]);
});