You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wattpad-deno/tests/index.ts

13 lines
314 B

import Wattpad from "../src/classes/Wattpad.ts";
import storyTest from "./story.ts";
import chaptersTest from "./chapter.ts";
import searchTest from "./search.ts";
import userTest from "./user.ts";
const wattpad = new Wattpad();
storyTest(wattpad);
chaptersTest(wattpad);
searchTest(wattpad);
userTest(wattpad);