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

Commit 88d24e6

Browse files
committedOct 25, 2015
config.show test
1 parent 6675e5b commit 88d24e6

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed
 

‎test/test.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -265,11 +265,21 @@ describe('IPFS Node.js API wrapper tests', function () {
265265
})
266266
})
267267

268-
it('.config.show')
268+
it('.config.show', function (done) {
269+
this.timeout(10000)
270+
271+
apiClients['c'].config.show(function (err, res) {
272+
if (err) {
273+
throw err
274+
}
275+
assert(res)
276+
done()
277+
})
278+
})
269279
it('.config.replace')
270280
})
271281

272-
describe('.update', function () {
282+
describe('.update (currently disabled, wait for IPFS 0.4.0 release', function () {
273283
it('.update.apply')
274284
it('.update.check')
275285
it('.update.log')

0 commit comments

Comments
 (0)
This repository has been archived.