Skip to content
This repository was archived by the owner on Apr 29, 2020. It is now read-only.

Commit 0ae27e1

Browse files
committed
fix: increase test timeout
1 parent 370dadd commit 0ae27e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/exporter.spec.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ describe('exporter', () => {
313313
})
314314

315315
it('exports a large file > 5mb', function (done) {
316-
this.timeout(10 * 1000)
316+
this.timeout(30 * 1000)
317317

318318
waterfall([
319319
(cb) => addTestFile({
@@ -332,7 +332,8 @@ describe('exporter', () => {
332332
})
333333

334334
it('exports a chunk of a large file > 5mb', function (done) {
335-
this.timeout(10 * 1000)
335+
this.timeout(30 * 1000)
336+
336337
const offset = 0
337338
const length = 5
338339
const bytes = randomBytes(ONE_MEG * 6)

0 commit comments

Comments
 (0)