smartcrypto/test/test.ts

12 lines
319 B
TypeScript
Raw Normal View History

2019-10-01 12:11:20 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartcrypto from '../ts/index';
2019-10-01 12:11:20 +00:00
2021-02-20 17:51:30 +00:00
let testSmartCrypto: smartcrypto.Smartcrypto;
2019-10-01 12:11:20 +00:00
tap.test('first test', async () => {
2021-02-20 17:51:30 +00:00
testSmartCrypto = new smartcrypto.Smartcrypto();
expect(testSmartCrypto).to.be.instanceOf(smartcrypto.Smartcrypto);
});
2019-10-01 12:11:20 +00:00
tap.start();