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

Commit 897745c

Browse files
jacobheunAlan Shaw
authored andcommitted
test: improve exchange files (#59)
1 parent c0879f8 commit 897745c

File tree

5 files changed

+112
-269
lines changed

5 files changed

+112
-269
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ node_js:
1111
os:
1212
- linux
1313
- osx
14-
- windows
1514

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

1918
jobs:
2019
include:
20+
- os: windows
21+
cache: false
22+
2123
- stage: check
2224
script:
2325
- npx aegir commitlint --travis

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"ipfs-http-client": "^29.1.0",
5555
"ipfs-unixfs": "~0.1.16",
5656
"ipfs-repo": "~0.26.1",
57-
"ipfsd-ctl": "~0.42.0",
57+
"ipfsd-ctl": "~0.42.2",
5858
"is-ci": "^2.0.0",
5959
"left-pad": "^1.3.0",
6060
"libp2p-websocket-star-rendezvous": "~0.3.0",

test/circuit/browser.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ module.exports = {
9898
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
9999
], callback)
100100
},
101-
timeout: 100 * 1000,
102101
skip: () => false
103102
},
104103
'js-browser-browser': {
@@ -115,8 +114,7 @@ module.exports = {
115114
(cb) => setTimeout(cb, 3000),
116115
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
117116
], callback)
118-
},
119-
timeout: 100 * 1000
117+
}
120118
},
121119
'browser-browser-go': {
122120
create: (callback) => series([
@@ -133,7 +131,6 @@ module.exports = {
133131
(cb) => nodeA.ipfsd.api.swarm.connect(getCircuitAddr(nodeB.addrs), cb)
134132
], callback)
135133
},
136-
timeout: 100 * 1000,
137134
skip: () => true
138135
},
139136
'browser-browser-js': {

0 commit comments

Comments
 (0)