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

Commit 2972426

Browse files
vasco-santosdaviddias
authored andcommitted
fix: Typos on bundled libraries pull request
1 parent 90a1520 commit 2972426

File tree

3 files changed

+31
-28
lines changed

3 files changed

+31
-28
lines changed

js/src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ exports.key = require('./key')
1616
exports.stats = require('./stats')
1717
exports.repo = require('./repo')
1818
exports.bootstrap = require('./bootstrap')
19+
exports.types = require('./types')

js/src/types.js

+29-27
Original file line numberDiff line numberDiff line change
@@ -15,39 +15,41 @@ const dirtyChai = require('dirty-chai')
1515
const expect = chai.expect
1616
chai.use(dirtyChai)
1717

18-
describe('.types', function () {
19-
let ipfs
18+
module.exports = (common) => {
19+
describe('.types', function () {
20+
let ipfs
2021

21-
before(function (done) {
22-
// CI takes longer to instantiate the daemon, so we need to increase the
23-
// timeout for the before step
24-
this.timeout(60 * 1000)
22+
before(function (done) {
23+
// CI takes longer to instantiate the daemon, so we need to increase the
24+
// timeout for the before step
25+
this.timeout(60 * 1000)
2526

26-
common.setup((err, factory) => {
27-
expect(err).to.not.exist()
28-
factory.spawnNode((err, node) => {
27+
common.setup((err, factory) => {
2928
expect(err).to.not.exist()
30-
ipfs = node
31-
done()
29+
factory.spawnNode((err, node) => {
30+
expect(err).to.not.exist()
31+
ipfs = node
32+
done()
33+
})
3234
})
3335
})
34-
})
3536

36-
after((done) => {
37-
common.teardown(done)
38-
})
37+
after((done) => {
38+
common.teardown(done)
39+
})
3940

40-
it('types object', () => {
41-
expect(ipfs.types).to.be.deep.equal({
42-
Buffer: Buffer,
43-
PeerId: PeerId,
44-
PeerInfo: PeerInfo,
45-
multiaddr: multiaddr,
46-
multibase: multibase,
47-
multihash: multihash,
48-
CID: CID,
49-
dagPB: dagPB,
50-
dagCBOR: dagCBOR
41+
it('types object', () => {
42+
expect(ipfs.types).to.be.deep.equal({
43+
Buffer: Buffer,
44+
PeerId: PeerId,
45+
PeerInfo: PeerInfo,
46+
multiaddr: multiaddr,
47+
multibase: multibase,
48+
multihash: multihash,
49+
CID: CID,
50+
dagPB: dagPB,
51+
dagCBOR: dagCBOR
52+
})
5153
})
5254
})
53-
})
55+
}

js/src/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const chai = require('chai')
88
const dirtyChai = require('dirty-chai')
99
const expect = chai.expect
1010
chai.use(dirtyChai)
11-
util
11+
1212
describe('.types', function () {
1313
let ipfs
1414

0 commit comments

Comments
 (0)