From faf3645361bb468f4544725911278aee46655937 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Fri, 20 Jul 2018 17:02:27 +1000 Subject: [PATCH] tests/integration: allow more time --- test/integration/payments.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/payments.js b/test/integration/payments.js index 0a164f9..d657f3c 100644 --- a/test/integration/payments.js +++ b/test/integration/payments.js @@ -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) })