Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: skip "should respect timeout option" test
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Aug 1, 2019
1 parent cf2a9e9 commit fc76875
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion test/core/interface.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,14 @@ describe('interface-ipfs-core tests', function () {
}
}))

tests.object(defaultCommonFactory)
tests.object(defaultCommonFactory, {
skip: [
{
name: 'should respect timeout option',
reason: 'js-ipfs doesn\'t support timeout yet'
}
]
})

tests.pin(defaultCommonFactory)

Expand Down
9 changes: 8 additions & 1 deletion test/http-api/interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,14 @@ describe('interface-ipfs-core over ipfs-http-client tests', () => {
}
}))

tests.object(defaultCommonFactory)
tests.object(defaultCommonFactory, {
skip: [
{
name: 'should respect timeout option',
reason: 'js-ipfs doesn\'t support timeout yet'
}
]
})

tests.pin(defaultCommonFactory)

Expand Down

0 comments on commit fc76875

Please sign in to comment.