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

Commit b724e65

Browse files
committed
fix: new setup
1 parent da79067 commit b724e65

File tree

3 files changed

+10
-23
lines changed

3 files changed

+10
-23
lines changed

src/miscellaneous/id.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ module.exports = (createCommon, options) => {
88
const it = getIt(options)
99
const common = createCommon()
1010

11-
describe('.id', () => {
11+
describe('.id', function () {
12+
this.timeout(60 * 1000)
1213
let ipfs
1314

1415
before(function (done) {
1516
// CI takes longer to instantiate the daemon, so we need to increase the
1617
// timeout for the before step
17-
this.timeout(60 * 1000)
1818

1919
common.setup((err, factory) => {
2020
expect(err).to.not.exist()

src/miscellaneous/resolve.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ module.exports = (createCommon, options) => {
1515
const it = getIt(options)
1616
const common = createCommon()
1717

18-
describe('.resolve', () => {
18+
describe('.resolve', function () {
19+
this.timeout(60 * 1000)
1920
let ipfs
2021
let nodeId
2122

src/swarm/connect.js

+6-20
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { spawnNodesWithId } = require('../utils/spawn')
5-
const { getDescribe, getIt, expect } = require('../utils/mocha')
4+
const { getDescribe, getIt } = require('../utils/mocha')
65

76
module.exports = (createCommon, options) => {
87
const describe = getDescribe(options)
98
const it = getIt(options)
109
const common = createCommon()
1110

1211
describe('.swarm.connect', function () {
13-
this.timeout(80 * 1000)
14-
12+
this.timeout(10000)
1513
let ipfsA
1614
let ipfsB
1715

18-
before(function (done) {
19-
// CI takes longer to instantiate the daemon, so we need to increase the
20-
// timeout for the before step
21-
this.timeout(100 * 1000)
22-
23-
common.setup((err, factory) => {
24-
expect(err).to.not.exist()
25-
26-
spawnNodesWithId(2, factory, (err, nodes) => {
27-
expect(err).to.not.exist()
28-
ipfsA = nodes[0]
29-
ipfsB = nodes[1]
30-
done()
31-
})
32-
})
16+
before(async () => {
17+
ipfsA = await common.setup()
18+
ipfsB = await common.setup()
3319
})
3420

35-
after((done) => common.teardown(done))
21+
after(() => common.teardown())
3622

3723
it('should connect to a peer', (done) => {
3824
ipfsA.swarm.connect(ipfsB.peerId.addresses[0], done)

0 commit comments

Comments
 (0)