fix(core): update

This commit is contained in:
2021-04-12 20:09:19 +00:00
parent 04a62f6176
commit c7169e37a6
2 changed files with 40 additions and 1 deletions

View File

@ -8,4 +8,9 @@ tap.test('first test', async () => {
expect(testSmarturl).to.be.instanceOf(smarturl.Smarturl);
});
tap.test('should parse an URL', async () => {
const parsedUrl = testSmarturl.parseUrl('https://lossless.com');
console.log(parsedUrl);
});
tap.start();