12 lines
319 B
TypeScript
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();
|