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

Commit fecc22f

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/cli/object.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ describe('object', () => runOnAndOff((thing) => {
4141
})
4242
})
4343

44-
it('get with data', () => {
44+
it('get with data', function () {
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`))
@@ -53,7 +55,9 @@ describe('object', () => runOnAndOff((thing) => {
5355
})
5456
})
5557

56-
it('get while overriding data-encoding', () => {
58+
it('get while overriding data-encoding', function () {
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)