diff --git a/tests_zemu/tests/txs_basic.test.ts b/tests_zemu/tests/txs_basic.test.ts index 372bb24e..850a10b3 100644 --- a/tests_zemu/tests/txs_basic.test.ts +++ b/tests_zemu/tests/txs_basic.test.ts @@ -22,7 +22,7 @@ import { fee_for, TX_INPUT_DATA } from './_vectors' import crypto from 'crypto' import { takeLastSnapshot } from './utils' import { Signatures } from '@zondax/zcashtools/build/native' -jest.setTimeout(60000) +jest.setTimeout(200000) const tx_version = 0x05 @@ -357,6 +357,7 @@ describe('tx methods', function () { // The builder needs these signatures to add it to the transaction blob. // We need to do this one by one. // So we first gather all signatures we need. + console.log('Extract signatures.....') const req7 = await app.extractSpendSignature() console.log(req7) @@ -364,6 +365,7 @@ describe('tx methods', function () { const req8 = await app.extractSpendSignature() console.log(req8) + console.log('Appending signatures.....') // At this point we gathered all signatures. // We now add these signatures to the builder. // Note that for this transaction, we do not have any transparent signatures. @@ -376,13 +378,16 @@ describe('tx methods', function () { const b5 = builder.add_signatures(signatures) expect(b5).toBeTruthy() + console.log('Taking last snapshot....') await takeLastSnapshot(testname, last_index, sim) // The builder is now done and the transaction is complete. + console.log(' Builder finalize') const b6 = builder.finalize() expect(b6).toBeDefined() - console.log(b6) + console.log('*****B6: ', b6) + expect(true).toEqual(true) } finally { await sim.close() }