diff --git a/test/ipns.js b/test/ipns.js index 6310f955..5abb88c1 100644 --- a/test/ipns.js +++ b/test/ipns.js @@ -79,7 +79,10 @@ describe('ipns locally using the same repo across implementations', function () await publishAndResolve(goDaemon) }) - it('should publish an ipns record to a js daemon and resolve it using a go daemon through the reuse of the same repo', async function () { + // FIXME: https://github.com/ipfs/js-ipfs/issues/1467 + // + // Repo versions are different. + it.skip('should publish an ipns record to a js daemon and resolve it using a go daemon through the reuse of the same repo', async function () { const daemons = await Promise.all([ daemonFactory.spawn({ ...daemonOptions, @@ -94,7 +97,10 @@ describe('ipns locally using the same repo across implementations', function () await publishAndResolve(daemons[0], daemons[1]) }) - it('should publish an ipns record to a go daemon and resolve it using a js daemon through the reuse of the same repo', async function () { + // FIXME: https://github.com/ipfs/js-ipfs/issues/1467 + // + // Repo versions are different. + it.skip('should publish an ipns record to a go daemon and resolve it using a js daemon through the reuse of the same repo', async function () { const daemons = await Promise.all([ daemonFactory.spawn({ ...daemonOptions, diff --git a/test/repo.js b/test/repo.js index 8c80e115..d9e87d96 100644 --- a/test/repo.js +++ b/test/repo.js @@ -18,7 +18,10 @@ async function catAndCheck (api, cid, data) { expect(fileData.slice()).to.eql(data) } -describe('repo', function () { +// Repo compatibility is broken. +// +// FIXME: https://github.com/ipfs/js-ipfs/issues/1467 +describe.skip('repo', function () { this.timeout(80 * 1000) if (isWindows) {