Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: increase test timeouts as they are slow
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Aug 16, 2018
1 parent 8385d40 commit f5d6906
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/cli/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ describe('object', () => runOnAndOff((thing) => {
})

it('get with data', () => {
this.timeout(15 * 1000)

return ipfs('object new')
.then((out) => out.trim())
.then((hash) => ipfs(`object patch set-data ${hash} test/fixtures/test-data/hello`))
Expand All @@ -54,6 +56,8 @@ describe('object', () => runOnAndOff((thing) => {
})

it('get while overriding data-encoding', () => {
this.timeout(15 * 1000)

return ipfs('object new')
.then((out) => out.trim())
.then((hash) => ipfs(`object patch set-data ${hash} test/fixtures/test-data/hello`))
Expand Down

0 comments on commit f5d6906

Please sign in to comment.