fix(core): update

This commit is contained in:
2023-08-01 12:49:59 +02:00
parent 95bf41a602
commit c13549ac82
5 changed files with 74 additions and 2 deletions

View File

@ -13,4 +13,11 @@ tap.test('should deal with UrlHouse data', async () => {
console.log(data.length);
});
tap.test('should deal with FeodoTracker data', async () => {
const feodoTracker = new abuseCh.FeodoTracker();
const data = await feodoTracker.getData();
console.log(data.length);
console.log(data[0]);
});
tap.start();