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

Commit c453191

Browse files
committed
test: skip findprovs test in go until the issue has been fixed
1 parent 60c0747 commit c453191

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

js/src/dht.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,13 @@ module.exports = (common) => {
185185
})
186186

187187
describe('findprovs', () => {
188-
it('basic', (done) => {
188+
it('provide from one node and find it through another node', function (done) {
189+
if (withGo) {
190+
// TODO go-ipfs endpoint doesn't conform with the others
191+
// https://github.com/ipfs/go-ipfs/issues/5047
192+
this.skip()
193+
}
194+
189195
waterfall([
190196
(cb) => nodeE.object.new('unixfs-dir', cb),
191197
(dagNode, cb) => {

0 commit comments

Comments
 (0)