Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix: disable pubsub due to wire format changes (#388)
Browse files Browse the repository at this point in the history
This temporarily disables pubsub tests as we are unable to test interop
until both JS and GO changes land:
- ipfs/kubo#8183
- ipfs/js-ipfs#3922

When we have that, we will re-enable skipped tests
in #387
  • Loading branch information
lidel committed Oct 25, 2021
1 parent 99502a7 commit 344f692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/ipns-pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const namespace = '/record/'

const ipfsRef = '/ipfs/QmPFVLPmp9zv5Z5KUqLhe2EivAGccQW2r7M7jhVJGLZoZU'

describe('ipns-pubsub', function () {
// TODO: unskip after https://github.com/ipfs/js-ipfs/pull/3922 and https://github.com/ipfs/go-ipfs/pull/8183 both ship
describe.skip('ipns-pubsub', function () {
let nodes = []
let factory

Expand Down
3 changes: 2 additions & 1 deletion test/pubsub.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ const daemonOptions = {

const timeout = 20e3

describe('pubsub', function () {
// TODO: unskip after https://github.com/ipfs/js-ipfs/pull/3922 and https://github.com/ipfs/go-ipfs/pull/8183 both ship
describe.skip('pubsub', function () {
this.timeout(60 * 1000)

const tests = {
Expand Down

0 comments on commit 344f692

Please sign in to comment.