Inital commit of test file

pull/1/head
j 2024-03-17 14:11:00 -04:00
parent 78a63b91a6
commit bf7a7a9680
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import { CommentFetcher } from "../../src/rdrama/services/CommentFetcher";
main();
async function main(): Promise<void> {
let maxPages = 5
for (let page = 1; page <= maxPages; page++) {
const newComments = await CommentFetcher.fetchComments(page)
}
}