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

Commit

Permalink
test: skip findprovs test in go until the issue has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed May 30, 2018
1 parent 60c0747 commit c453191
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion js/src/dht.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,13 @@ module.exports = (common) => {
})

describe('findprovs', () => {
it('basic', (done) => {
it('provide from one node and find it through another node', function (done) {
if (withGo) {
// TODO go-ipfs endpoint doesn't conform with the others
// https://github.com/ipfs/go-ipfs/issues/5047
this.skip()
}

waterfall([
(cb) => nodeE.object.new('unixfs-dir', cb),
(dagNode, cb) => {
Expand Down

0 comments on commit c453191

Please sign in to comment.