diff --git a/test/core/interface.spec.js b/test/core/interface.spec.js index edb65a04e3..21531d294e 100644 --- a/test/core/interface.spec.js +++ b/test/core/interface.spec.js @@ -62,16 +62,7 @@ describe('interface-ipfs-core tests', function () { }) tests.filesRegular(defaultCommonFactory, { - skip: isNode ? [{ - name: 'should ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should readable stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should pull stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }] : [{ + skip: isNode ? null : [{ name: 'addFromStream', reason: 'Not designed to run in the browser' }, { @@ -80,15 +71,6 @@ describe('interface-ipfs-core tests', function () { }, { name: 'addFromURL', reason: 'Not designed to run in the browser' - }, { - name: 'should ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should readable stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should pull stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' }] }) diff --git a/test/http-api/interface.js b/test/http-api/interface.js index 34c6b97455..9529fdece2 100644 --- a/test/http-api/interface.js +++ b/test/http-api/interface.js @@ -46,18 +46,7 @@ describe('interface-ipfs-core over ipfs-http-client tests', () => { ] }) - tests.filesRegular(defaultCommonFactory, { - skip: [{ - name: 'should ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should readable stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }, { - name: 'should pull stream ls with a base58 encoded CID', - reason: 'File sizes incompatible with go-ipfs https://github.com/ipfs/js-ipfs/issues/1934' - }] - }) + tests.filesRegular(defaultCommonFactory) tests.filesMFS(defaultCommonFactory)