fix(core): update

This commit is contained in:
2020-10-25 14:02:03 +00:00
parent 1875949e99
commit 3485bebc1e
6 changed files with 78 additions and 8 deletions

View File

@ -1,8 +1,11 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartfeed from '../ts/index';
tap.test('first test', async () => {
console.log(smartfeed.standardExport);
let testSmartFeed: smartfeed.Smartfeed;
tap.test('should create a feedVersion', async () => {
testSmartFeed = new smartfeed.Smartfeed();
expect(testSmartFeed).to.be.instanceOf(smartfeed.Smartfeed);
});
tap.start();