smartcrypto/test/test.ts
2021-02-20 17:51:30 +00:00

12 lines
319 B
TypeScript

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