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

Commit fc76875

Browse files
committed
chore: skip "should respect timeout option" test
1 parent cf2a9e9 commit fc76875

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

test/core/interface.spec.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,14 @@ describe('interface-ipfs-core tests', function () {
121121
}
122122
}))
123123

124-
tests.object(defaultCommonFactory)
124+
tests.object(defaultCommonFactory, {
125+
skip: [
126+
{
127+
name: 'should respect timeout option',
128+
reason: 'js-ipfs doesn\'t support timeout yet'
129+
}
130+
]
131+
})
125132

126133
tests.pin(defaultCommonFactory)
127134

test/http-api/interface.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,14 @@ describe('interface-ipfs-core over ipfs-http-client tests', () => {
132132
}
133133
}))
134134

135-
tests.object(defaultCommonFactory)
135+
tests.object(defaultCommonFactory, {
136+
skip: [
137+
{
138+
name: 'should respect timeout option',
139+
reason: 'js-ipfs doesn\'t support timeout yet'
140+
}
141+
]
142+
})
136143

137144
tests.pin(defaultCommonFactory)
138145

0 commit comments

Comments
 (0)