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/animeEpisodeSrcs.test.ts
T
2024-03-03 23:10:12 +05:30

14 lines
344 B
TypeScript

import { expect, test } from "vitest";
import { scrapeAnimeEpisodeSources } from "../src/parsers/index.js";
test("returns anime episode streaming link(s)", async () => {
const data = await scrapeAnimeEpisodeSources(
"steinsgate-3?ep=230",
"vidstreaming",
"sub"
);
expect(data.sources).not.toEqual([]);
// expect(data)
});