Browse Source

test allow duplicate tx if no id is specified

activeAddress
Ivan Socolsky 9 years ago
parent
commit
d47bf73dd8
No known key found for this signature in database GPG Key ID: FAECE6A05FAA4F56
  1. 12
      test/integration/server.js

12
test/integration/server.js

@ -3053,7 +3053,17 @@ describe('Wallet service', function() {
should.not.exist(err);
should.exist(txs);
txs.length.should.equal(1);
done();
txOpts.txProposalId = null;
server.createTx(txOpts, function(err, tx) {
should.not.exist(err);
should.exist(tx);
tx.id.should.not.equal('123');
server.storage.fetchTxs(wallet.id, {}, function(err, txs) {
should.not.exist(err);
txs.length.should.equal(2);
done();
});
});
});
});
});

Loading…
Cancel
Save