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

fix: increase timeout for unadulterated data test #1425

Merged
merged 1 commit into from
Jul 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/cli/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ describe('object', () => runOnAndOff((thing) => {
})
})

it('unadulterated data', () => {
it('unadulterated data', function () {
this.timeout(10 * 1000)

// has to be big enough to span several DAGNodes
const data = crypto.randomBytes(1024 * 300)
const file = path.join(os.tmpdir(), `file-${Math.random()}.txt`)
Expand Down