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

Commit 344f692

Browse files
authoredOct 25, 2021
fix: disable pubsub due to wire format changes (#388)
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
1 parent 99502a7 commit 344f692

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎test/ipns-pubsub.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ const namespace = '/record/'
2222

2323
const ipfsRef = '/ipfs/QmPFVLPmp9zv5Z5KUqLhe2EivAGccQW2r7M7jhVJGLZoZU'
2424

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

‎test/pubsub.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ const daemonOptions = {
2727

2828
const timeout = 20e3
2929

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

3334
const tests = {

0 commit comments

Comments
 (0)
This repository has been archived.