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

Commit

Permalink
fix: increase timeout for unadulterated data test (#1425)
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Alan Shaw <alan@tableflip.io>
  • Loading branch information
alanshaw authored Jul 5, 2018
1 parent 89cb6ea commit 9e75541
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit 9e75541

Please sign in to comment.