Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 23531d2

Browse files
committed
fix: use test branch
1 parent 7d05429 commit 23531d2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ os:
2020
- osx
2121
- windows
2222

23-
script: npx nyc -s npm run test:node -- --bail
23+
script: DEBUG=ipfs* npx nyc -s npm run test:node -- --bail
2424
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
2525

2626
jobs:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"async": "^3.1.0",
6969
"browser-process-platform": "~0.1.1",
7070
"go-ipfs-dep": "^0.4.22",
71-
"interface-ipfs-core": "^0.131.0",
71+
"interface-ipfs-core": "github:ipfs/interface-js-ipfs-core#fix-http-client-tests",
7272
"ipfsd-ctl": "^2.1.0",
7373
"it-all": "^1.0.1",
7474
"it-concat": "^1.0.0",

test/interface.spec.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,11 @@ describe('interface-ipfs-core tests', () => {
128128
]
129129
})
130130

131-
tests.dht(commonFactory)
131+
tests.dht(commonFactory, {
132+
only: [
133+
'should find other peers'
134+
]
135+
})
132136

133137
tests.files(commonFactory, {
134138
skip: [

0 commit comments

Comments
 (0)