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

Commit 597306a

Browse files
committed
chore: CI is slow and default timeout was reduced
1 parent ff4183c commit 597306a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/files.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ const through = require('through2')
1717
const Buffer = require('safe-buffer').Buffer
1818

1919
module.exports = (common) => {
20-
describe('.files', () => {
20+
describe('.files', function () {
21+
this.timeout(50 * 1000)
22+
2123
let smallFile
2224
let bigFile
2325
let directoryContent
2426
let ipfs
2527

26-
before(function (done) {
27-
// CI is slow
28-
this.timeout(20 * 1000)
29-
28+
before((done) => {
3029
smallFile = loadFixture(__dirname, '../test/fixtures/testfile.txt', 'interface-ipfs-core')
3130
bigFile = loadFixture(__dirname, '../test/fixtures/15mb.random', 'interface-ipfs-core')
3231

0 commit comments

Comments
 (0)