From a69d0761342c47e1dd8ec4ddda2f21647ec5b8c0 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Thu, 5 Jul 2018 20:42:39 +0100 Subject: [PATCH] fix: increase timeout for unadulterated data test License: MIT Signed-off-by: Alan Shaw --- test/cli/object.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/cli/object.js b/test/cli/object.js index fa584104f1..4173ecd816 100644 --- a/test/cli/object.js +++ b/test/cli/object.js @@ -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`)