Remove test script

pull/73/head
MillenniumEarl 2021-03-03 20:16:49 +01:00
parent 0c5e979d91
commit 2af6c263c1
2 changed files with 0 additions and 21 deletions

7
.vscode/launch.json vendored
View File

@ -7,12 +7,5 @@
"command": "npm run test", "command": "npm run test",
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
{
"type": "node-terminal",
"name": "Devtest",
"request": "launch",
"command": "npm run run-devtest",
"cwd": "${workspaceFolder}"
}
] ]
} }

View File

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