fix(core): update
This commit is contained in:
12
test/test.ts
12
test/test.ts
@ -6,13 +6,23 @@ let testSmartWhois: smartwhois.SmartWhois;
|
||||
tap.test('should create a valid instance of SmartWhois', async () => {
|
||||
testSmartWhois = new smartwhois.SmartWhois();
|
||||
expect(testSmartWhois).toBeInstanceOf(smartwhois.SmartWhois);
|
||||
})
|
||||
});
|
||||
|
||||
tap.test('should get a parsed url result for whois', async () => {
|
||||
const parsedUrlResult = await testSmartWhois.getParsedUrlResultForWhois('https://coffee.link/understanding-gen-z/');
|
||||
console.log(parsedUrlResult);
|
||||
});
|
||||
|
||||
tap.test('should get whois info for domain', async () => {
|
||||
const whoisInfo = await testSmartWhois.getWhoisForDomain('task.vc');
|
||||
console.log(whoisInfo);
|
||||
});
|
||||
|
||||
tap.test('should get whois info for domain', async () => {
|
||||
const whoisInfo = await testSmartWhois.getWhoisForDomain('https://coffee.link/understanding-gen-z/');
|
||||
console.log(whoisInfo);
|
||||
});
|
||||
|
||||
tap.test('should check for a valid tld', async () => {
|
||||
const comIsValid = await testSmartWhois.isValidTld('.com');
|
||||
console.log(comIsValid);
|
||||
|
Reference in New Issue
Block a user