|
|
@ -164,7 +164,7 @@ describe('TransactionBuilder', function() { |
|
|
|
}) |
|
|
|
|
|
|
|
fixtures.invalid.build.forEach(function(f) { |
|
|
|
describe('for ' + f.description, function() { |
|
|
|
describe('for ' + (f.description || f.exception), function() { |
|
|
|
beforeEach(function() { |
|
|
|
if (f.txHex) { |
|
|
|
var tx = Transaction.fromHex(f.txHex) |
|
|
@ -175,7 +175,7 @@ describe('TransactionBuilder', function() { |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
|
it('throws on ' + f.exception, function() { |
|
|
|
it('throws', function() { |
|
|
|
assert.throws(function() { |
|
|
|
txb.build() |
|
|
|
}, new RegExp(f.exception)) |
|
|
|