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

Commit f5d6906

Browse files
committed
fix: increase test timeouts as they are slow
1 parent 8385d40 commit f5d6906

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/cli/object.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ describe('object', () => runOnAndOff((thing) => {
4242
})
4343

4444
it('get with data', () => {
45+
this.timeout(15 * 1000)
46+
4547
return ipfs('object new')
4648
.then((out) => out.trim())
4749
.then((hash) => ipfs(`object patch set-data ${hash} test/fixtures/test-data/hello`))
@@ -54,6 +56,8 @@ describe('object', () => runOnAndOff((thing) => {
5456
})
5557

5658
it('get while overriding data-encoding', () => {
59+
this.timeout(15 * 1000)
60+
5761
return ipfs('object new')
5862
.then((out) => out.trim())
5963
.then((hash) => ipfs(`object patch set-data ${hash} test/fixtures/test-data/hello`))

0 commit comments

Comments
 (0)