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

Commit

Permalink
test: up timeouts for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobheun committed Jul 27, 2018
1 parent 6543854 commit fa7f5d0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/core/libp2p.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ const Libp2p = require('libp2p')

const libp2pComponent = require('../../src/core/components/libp2p')

describe('libp2p customization', () => {
describe('libp2p customization', function () {
// Provide some extra time for ci since we're starting libp2p nodes in each test
this.timeout = 15 * 1000

let peerInfo
let peerBook
let mockConfig
let _libp2p

before(function (done) {
this.timeout = 10 * 1000

before((done) => {
mockConfig = {
get: (callback) => {
callback(null, {
Expand Down

0 comments on commit fa7f5d0

Please sign in to comment.