fix(core): update

This commit is contained in:
2023-04-19 21:36:44 +02:00
parent 39442208c8
commit 739c95c1e1
6 changed files with 25 additions and 15 deletions

View File

@ -9,9 +9,9 @@ tap.test('should create a valid instance of SmartWhois', async () => {
});
tap.test('should get a parsed url result for whois', async () => {
const parsedUrlResult = await testSmartWhois.getParsedUrlResultForWhois('https://coffee.link/understanding-gen-z/');
const parsedUrlResult = await testSmartWhois.getDomainDelegation('https://coffee.link/understanding-gen-z/');
console.log(parsedUrlResult);
const parsedUrlResult2 = await testSmartWhois.getParsedUrlResultForWhois('task.vc');
const parsedUrlResult2 = await testSmartWhois.getDomainDelegation('task.vc');
console.log(parsedUrlResult2);
});