Skip to content
This repository was archived by the owner on Dec 10, 2020. It is now read-only.

Commit 10b883a

Browse files
committed
increase timeout threshold
1 parent cc5bb29 commit 10b883a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cli/cli.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { spawn } from 'child_process'
22
import tape from 'tape'
33

44
tape('[CLI]', (t) => {
5-
t.test('should start and begin downloading blocks', { timeout: 160000 }, (t) => {
5+
t.test('should begin downloading blocks', { timeout: 260000 }, (t) => {
66
t.plan(1)
77
const file = require.resolve('../../dist/bin/cli.js')
88
const child = spawn(process.execPath, [file])
99

1010
const timeout = setTimeout(() => {
1111
child.kill('SIGINT')
12-
}, 120000)
12+
}, 240000)
1313

1414
const end = () => {
1515
clearTimeout(timeout)

0 commit comments

Comments
 (0)