Skip to content

Commit

Permalink
chore(test): unskip should pin dag-cbor
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed Dec 13, 2022
1 parent 42773b5 commit 65d42f1
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions test/interface-tests.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-env mocha */

import { isWebWorker } from 'ipfs-utils/src/env.js'
import { isWindows, isFirefox, isChrome } from './constants.js'
import * as tests from './interface-tests/src/index.js'
import { factory } from './utils/factory.js'
Expand Down Expand Up @@ -245,18 +244,12 @@ function executeTests (commonFactory) {
})

tests.pin(commonFactory, {
skip: [
].concat(isWebWorker
? [
'should pin dag-cbor' // only seems to fail when running all tests together.
].map((name) => ({ name, reason: 'FIXME: https://github.com/ipfs/js-kubo-rpc-client/issues/56' }))
skip: [].concat(isChrome
? [{
name: 'should default to blocking pin',
reason: 'FIXME: intermittently failing. see https://github.com/ipfs/js-kubo-rpc-client/issues/56'
}]
: [])
.concat(isChrome
? [{
name: 'should default to blocking pin',
reason: 'FIXME: intermittently failing. see https://github.com/ipfs/js-kubo-rpc-client/issues/56'
}]
: [])
})

tests.ping(commonFactory, {
Expand Down

0 comments on commit 65d42f1

Please sign in to comment.