mirror of
https://github.com/fluencelabs/js-libp2p-websockets
synced 2025-04-25 02:22:31 +00:00
chore: add discourse badge (#83)
This commit is contained in:
parent
18885e9cd3
commit
83475bddd7
41
.travis.yml
Normal file
41
.travis.yml
Normal file
@ -0,0 +1,41 @@
|
||||
language: node_js
|
||||
cache: npm
|
||||
stages:
|
||||
- check
|
||||
- test
|
||||
- cov
|
||||
|
||||
node_js:
|
||||
- '10'
|
||||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
script: npx nyc -s npm run test:node -- --bail
|
||||
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- stage: check
|
||||
script:
|
||||
- npx aegir commitlint --travis
|
||||
- npx aegir dep-check -- -i wrtc -i electron-webrtc
|
||||
- npm run lint
|
||||
|
||||
- stage: test
|
||||
name: chrome
|
||||
addons:
|
||||
chrome: stable
|
||||
script:
|
||||
- npx aegir test -t browser
|
||||
|
||||
- stage: test
|
||||
name: firefox
|
||||
addons:
|
||||
firefox: latest
|
||||
script:
|
||||
- npx aegir test -t browser -- --browsers FirefoxHeadless
|
||||
|
||||
notifications:
|
||||
email: false
|
@ -3,6 +3,7 @@
|
||||
[](http://ipn.io)
|
||||
[](http://ipfs.io/)
|
||||
[](http://webchat.freenode.net/?channels=%23ipfs)
|
||||
[](https://discuss.libp2p.io)
|
||||
[](https://coveralls.io/github/libp2p/js-libp2p-websockets?branch=master)
|
||||
[](https://travis-ci.org/libp2p/js-libp2p-websockets)
|
||||
[](https://circleci.com/gh/libp2p/js-libp2p-websockets)
|
||||
|
14
package.json
14
package.json
@ -42,19 +42,19 @@
|
||||
"dependencies": {
|
||||
"class-is": "^1.1.0",
|
||||
"debug": "^4.1.1",
|
||||
"interface-connection": "~0.3.2",
|
||||
"mafmt": "^6.0.4",
|
||||
"interface-connection": "~0.3.3",
|
||||
"mafmt": "^6.0.7",
|
||||
"multiaddr-to-uri": "^4.0.1",
|
||||
"pull-ws": "hugomrdias/pull-ws#fix/bundle-size"
|
||||
},
|
||||
"devDependencies": {
|
||||
"aegir": "^18.0.3",
|
||||
"chai": "^4.1.2",
|
||||
"aegir": "^18.2.1",
|
||||
"chai": "^4.2.0",
|
||||
"dirty-chai": "^2.0.1",
|
||||
"interface-transport": "~0.3.6",
|
||||
"multiaddr": "^6.0.3",
|
||||
"interface-transport": "~0.3.7",
|
||||
"multiaddr": "^6.0.6",
|
||||
"pull-goodbye": "0.0.2",
|
||||
"pull-stream": "^3.6.7"
|
||||
"pull-stream": "^3.6.9"
|
||||
},
|
||||
"contributors": [
|
||||
"Chris Campbell <christopher.d.campbell@gmail.com>",
|
||||
|
@ -253,7 +253,8 @@ describe('dial', () => {
|
||||
})
|
||||
})
|
||||
|
||||
describe('ip6', () => {
|
||||
// TODO: https://github.com/libp2p/js-libp2p-websockets/issues/84
|
||||
describe.skip('ip6', () => {
|
||||
let ws
|
||||
let listener
|
||||
const ma = multiaddr('/ip6/::1/tcp/9091')
|
||||
|
Loading…
x
Reference in New Issue
Block a user