fix(core): update

This commit is contained in:
2022-10-24 07:06:13 +02:00
parent 0d3a8dde59
commit f3fca605a4
3 changed files with 7 additions and 2 deletions

View File

@ -8,4 +8,9 @@ tap.test('first test', async () => {
expect(testSmartCrypto).toBeInstanceOf(smartcrypto.Smartcrypto);
});
tap.test('should create a private public keypair', async () => {
const keypair = await testSmartCrypto.createKeyPair();
console.log(keypair);
})
tap.start();