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

Commit eca00b9

Browse files
hacdiasalanshaw
authored andcommitted
fix: expect config to be an object (#344)
* fix: expect config to be an object License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com> * fix: linting License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com>
1 parent 3e972d2 commit eca00b9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

js/src/config/get.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'use strict'
33

44
const { getDescribe, getIt, expect } = require('../utils/mocha')
5+
const isPlainObject = require('is-plain-object')
56

67
module.exports = (createCommon, options) => {
78
const describe = getDescribe(options)
@@ -32,15 +33,17 @@ module.exports = (createCommon, options) => {
3233
it('should retrieve the whole config', (done) => {
3334
ipfs.config.get((err, config) => {
3435
expect(err).to.not.exist()
35-
expect(config).to.exist()
36+
expect(config).to.be.an('object')
37+
expect(isPlainObject(config)).to.equal(true)
3638
done()
3739
})
3840
})
3941

4042
it('should retrieve the whole config (promised)', () => {
4143
return ipfs.config.get()
4244
.then((config) => {
43-
expect(config).to.exist()
45+
expect(config).to.be.an('object')
46+
expect(isPlainObject(config)).to.equal(true)
4447
})
4548
})
4649

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
"peer-id": "~0.11.0",
5454
"peer-info": "~0.14.1",
5555
"pull-stream": "^3.6.8",
56-
"pump": "^3.0.0"
56+
"pump": "^3.0.0",
57+
"is-plain-object": "^2.0.4"
5758
},
58-
"devDependencies": {},
5959
"contributors": [
6060
"Alan Shaw <alan@tableflip.io>",
6161
"Alex Potsides <alex@achingbrain.net>",

0 commit comments

Comments
 (0)