import { NCO_BlockchainAPI, devnet_services, devnet_urls } from '../../src/index';


test('it should perform a test call correctly', async () => {
    const api = new NCO_BlockchainAPI(devnet_urls, devnet_services);
    const keyPair = await api.createKeyPair();
    expect(keyPair.prv_key).toBeDefined();
    expect(keyPair.pub_key).toBeDefined();
})
