diff options
| -rw-r--r-- | test/animeEpisodeSrcs.test.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/animeEpisodeSrcs.test.ts b/test/animeEpisodeSrcs.test.ts new file mode 100644 index 0000000..3aed842 --- /dev/null +++ b/test/animeEpisodeSrcs.test.ts @@ -0,0 +1,13 @@ +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) +}); |
