tests/integration: allow more time
This commit is contained in:
parent
b2d3a2cf30
commit
faf3645361
1 changed files with 3 additions and 1 deletions
|
@ -42,7 +42,9 @@ function buildAndSign (depends, prevOutput, redeemScript, witnessScript, done) {
|
|||
const { output } = fn(base)
|
||||
if (!output) throw new TypeError('Missing output')
|
||||
|
||||
describe('bitcoinjs-lib (payments - ' + k + ')', () => {
|
||||
describe('bitcoinjs-lib (payments - ' + k + ')', function () {
|
||||
this.timeout(30000)
|
||||
|
||||
it('can broadcast as an output, and be spent as an input', (done) => {
|
||||
buildAndSign(depends, output, null, null, done)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue