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

Commit 806b206

Browse files
hugomrdiasAlan Shaw
authored and
Alan Shaw
committed
fix: prepare for aegir release (#1021)
* fix: prepare for aegir release * chore: tweak node version in ci * chore: test electron * chore: test electron 2 * chore: upgrade aegir * chore: fix electron ci test * chore: fix ci tests * chore: allow fail electron-renderer * chore: test allow failure * chore: test allow failure 2
1 parent a04edac commit 806b206

File tree

3 files changed

+37
-26
lines changed

3 files changed

+37
-26
lines changed

.travis.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ stages:
77

88
node_js:
99
- '10'
10-
- '8'
10+
- '12'
1111

1212
os:
1313
- linux
@@ -17,10 +17,16 @@ script: npx nyc -s npm run test:node -- --bail
1717
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
1818

1919
jobs:
20+
allow_failures:
21+
- name: electron-renderer
22+
23+
fast_finish: true
24+
2025
include:
2126
- os: windows
2227
filter_secrets: false
2328
cache: false
29+
2430

2531
- stage: check
2632
script:
@@ -39,6 +45,16 @@ jobs:
3945
addons:
4046
firefox: latest
4147
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
48+
49+
- stage: test
50+
name: electron-main
51+
script:
52+
- xvfb-run npx aegir test -t electron-main -- --bail
53+
54+
- stage: test
55+
name: electron-renderer
56+
script:
57+
- xvfb-run npx aegir test -t electron-renderer -- --bail
4258

4359
notifications:
4460
email: false

package.json

+18-23
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@
22
"name": "ipfs-http-client",
33
"version": "32.0.1",
44
"description": "A client library for the IPFS HTTP API",
5+
"keywords": [
6+
"ipfs"
7+
],
8+
"homepage": "https://github.com/ipfs/js-ipfs-http-client",
9+
"bugs": "https://github.com/ipfs/js-ipfs-http-client/issues",
10+
"license": "MIT",
511
"leadMaintainer": "Alan Shaw <alan@tableflip.io>",
12+
"files": [
13+
"src",
14+
"dist"
15+
],
616
"main": "src/index.js",
717
"browser": {
818
"glob": false,
919
"fs": false,
1020
"stream": "readable-stream"
1121
},
12-
"files": [
13-
"src",
14-
"dist"
15-
],
22+
"repository": "github:ipfs/js-ipfs-http-client",
1623
"scripts": {
1724
"test": "aegir test",
1825
"test:node": "aegir test -t node",
@@ -40,14 +47,14 @@
4047
"flatmap": "0.0.3",
4148
"glob": "^7.1.3",
4249
"ipfs-block": "~0.8.1",
50+
"ipfs-utils": "~0.0.3",
4351
"ipld-dag-cbor": "~0.15.0",
4452
"ipld-dag-pb": "~0.17.3",
4553
"is-ipfs": "~0.6.1",
4654
"is-pull-stream": "0.0.0",
4755
"is-stream": "^2.0.0",
4856
"iso-stream-http": "~0.1.2",
4957
"iso-url": "~0.4.6",
50-
"ipfs-utils": "~0.0.3",
5158
"just-kebab-case": "^1.1.0",
5259
"just-map-keys": "^1.1.0",
5360
"kind-of": "^6.0.2",
@@ -71,16 +78,8 @@
7178
"tar-stream": "^2.0.1",
7279
"through2": "^3.0.1"
7380
},
74-
"engines": {
75-
"node": ">=8.3.0",
76-
"npm": ">=3.0.0"
77-
},
78-
"repository": {
79-
"type": "git",
80-
"url": "https://github.com/ipfs/js-ipfs-http-client"
81-
},
8281
"devDependencies": {
83-
"aegir": "^18.2.2",
82+
"aegir": "^19.0.3",
8483
"browser-process-platform": "~0.1.1",
8584
"chai": "^4.2.0",
8685
"cross-env": "^5.2.0",
@@ -91,9 +90,10 @@
9190
"nock": "^10.0.2",
9291
"stream-equal": "^1.1.1"
9392
},
94-
"keywords": [
95-
"ipfs"
96-
],
93+
"engines": {
94+
"node": ">=8.3.0",
95+
"npm": ">=3.0.0"
96+
},
9797
"contributors": [
9898
"Alan Shaw <alan.shaw@protocol.ai>",
9999
"Alan Shaw <alan@tableflip.io>",
@@ -184,10 +184,5 @@
184184
"victorbjelkholm <victorbjelkholm@gmail.com>",
185185
"Łukasz Magiera <magik6k@users.noreply.github.com>",
186186
"Łukasz Magiera <magik6k@gmail.com>"
187-
],
188-
"license": "MIT",
189-
"bugs": {
190-
"url": "https://github.com/ipfs/js-ipfs-http-client/issues"
191-
},
192-
"homepage": "https://github.com/ipfs/js-ipfs-http-client"
187+
]
193188
}

test/constructor.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ function clientWorks (client, done) {
143143

144144
function expectConfig (ipfs, { host, port, protocol, apiPath }) {
145145
const conf = ipfs.getEndpointConfig()
146-
expect(conf.host).to.equal(host || 'localhost')
147-
expect(conf.port).to.equal(port || '5001')
146+
expect(conf.host).to.be.oneOf([host, 'localhost', ''])
147+
expect(conf.port).to.be.oneOf([port, '5001', 80])
148148
expect(conf.protocol).to.equal(protocol || 'http')
149149
expect(conf['api-path']).to.equal(apiPath || '/api/v0/')
150150
}

0 commit comments

Comments
 (0)