Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

test: improve exchange files #59

Merged
merged 11 commits into from
Apr 11, 2019
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ node_js:
os:
- linux
- osx
- windows

script: npx nyc -s npm run test:node -- --bail
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov

jobs:
include:
- os: windows
cache: false

- stage: check
script:
- npx aegir commitlint --travis
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"ipfs-http-client": "^29.1.0",
"ipfs-unixfs": "~0.1.16",
"ipfs-repo": "~0.26.1",
"ipfsd-ctl": "~0.42.0",
"ipfsd-ctl": "~0.42.2",
"is-ci": "^2.0.0",
"left-pad": "^1.3.0",
"libp2p-websocket-star-rendezvous": "~0.3.0",
Expand Down
5 changes: 1 addition & 4 deletions test/circuit/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ module.exports = {
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
], callback)
},
timeout: 100 * 1000,
skip: () => false
},
'js-browser-browser': {
Expand All @@ -115,8 +114,7 @@ module.exports = {
(cb) => setTimeout(cb, 3000),
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
], callback)
},
timeout: 100 * 1000
}
},
'browser-browser-go': {
create: (callback) => series([
Expand All @@ -133,7 +131,6 @@ module.exports = {
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
], callback)
},
timeout: 100 * 1000,
skip: () => true
},
'browser-browser-js': {
Expand Down
Loading