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-07-18 19:34:09 +02:00

14 lines
336 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",
"hd-1",
"sub"
);
expect(data.sources).not.toEqual([]);
// expect(data)
});