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

Commit 9e75541

Browse files
authored
fix: increase timeout for unadulterated data test (#1425)
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 89cb6ea commit 9e75541

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/cli/object.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ describe('object', () => runOnAndOff((thing) => {
6969
})
7070
})
7171

72-
it('unadulterated data', () => {
72+
it('unadulterated data', function () {
73+
this.timeout(10 * 1000)
74+
7375
// has to be big enough to span several DAGNodes
7476
const data = crypto.randomBytes(1024 * 300)
7577
const file = path.join(os.tmpdir(), `file-${Math.random()}.txt`)

0 commit comments

Comments
 (0)