fix(core): update

This commit is contained in:
2020-10-25 22:12:38 +00:00
commit c75a4e0fec
15 changed files with 11418 additions and 0 deletions

11
test/test.ts Normal file
View File

@ -0,0 +1,11 @@
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.start();