fix(core): update

This commit is contained in:
2021-02-20 17:51:30 +00:00
parent 788d74edeb
commit ca381efaec
15 changed files with 10475 additions and 612 deletions

View File

@ -1,8 +1,11 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartcrypto from '../ts/index';
let testSmartCrypto: smartcrypto.Smartcrypto;
tap.test('first test', async () => {
console.log('hi');
testSmartCrypto = new smartcrypto.Smartcrypto();
expect(testSmartCrypto).to.be.instanceOf(smartcrypto.Smartcrypto);
});
tap.start();