Skip to content
This repository was archived by the owner on Apr 29, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module.exports = {
karma: {
browserNoActivityTimeout: 100 * 1000
browserNoActivityTimeout: 500 * 1000
}
}
12 changes: 7 additions & 5 deletions test/builder-dir-sharding.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ const setImmediate = require('async/setImmediate')
const leftPad = require('left-pad')
const CID = require('cids')

describe('builder: directory sharding', function () {
this.timeout(60 * 1000)

describe('builder: directory sharding', () => {
let ipld

before((done) => {
Expand Down Expand Up @@ -166,7 +164,9 @@ describe('builder: directory sharding', function () {
})
})

describe('big dir', () => {
describe('big dir', function () {
this.timeout(30 * 1000)

const maxDirs = 2000
let rootHash

Expand Down Expand Up @@ -261,7 +261,9 @@ describe('builder: directory sharding', function () {
})
})

describe('big nested dir', () => {
describe('big nested dir', function () {
this.timeout(450 * 1000)

const maxDirs = 2000
const maxDepth = 3
let rootHash
Expand Down