smartsitemap/test/test.ts
2021-01-03 02:08:00 +00:00

22 lines
765 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as smartsitemap from '../ts/index';
let testSmartsitemap: smartsitemap.SmartSitemap;
tap.test('should create an instance of Smartsitemap', async () => {
testSmartsitemap = new smartsitemap.SmartSitemap();
expect(testSmartsitemap).to.be.instanceOf(smartsitemap.SmartSitemap);
});
tap.test('should create a sitemap from feed', async () => {
const sitemapString = await testSmartsitemap.createSitemapNewsFromFeedUrl('https://www.theverge.com/rss/index.xml');
console.log(sitemapString);
});
tap.test('should parse a sitemap', async () => {
const result = await testSmartsitemap.parseSitemapUrl('https://www.theverge.com/sitemaps');
console.log(result.sitemapindex.sitemap);
})
tap.start();