fix(core): update

This commit is contained in:
2022-03-25 00:14:34 +01:00
parent f8241b49fb
commit 2e9394c330
9 changed files with 14885 additions and 7676 deletions

View File

@ -1,11 +1,11 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartsitemap from '../ts/index';
import * as smartsitemap from '../ts/index.js';
let testSmartsitemap: smartsitemap.SmartSitemap;
tap.test('should create an instance of Smartsitemap', async () => {
testSmartsitemap = new smartsitemap.SmartSitemap();
expect(testSmartsitemap).to.be.instanceOf(smartsitemap.SmartSitemap);
expect(testSmartsitemap).toBeInstanceOf(smartsitemap.SmartSitemap);
});
tap.test('should create a sitemap from feed', async () => {