Add test script

pull/73/head
MillenniumEarl 2021-02-16 10:41:59 +01:00
parent 659c9320a8
commit 53ff8f3c0e
1 changed files with 12 additions and 0 deletions

12
src/test.ts Normal file
View File

@ -0,0 +1,12 @@
"use strict";
import { fetchLatest } from "./scripts/latest-fetch";
import SearchQuery from "./scripts/classes/search-query";
async function test() {
const query = new SearchQuery();
const urls = await fetchLatest(query, 5);
}
test();