mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-07-18 18:11:57 +00:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
52d60a7391 | ||
|
165068d05c | ||
|
9baae15dcf | ||
|
b87524f36a | ||
|
b0484c678e | ||
|
b6c498055f |
@@ -11,6 +11,7 @@ before_install:
|
|||||||
script:
|
script:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- npm test
|
- npm test
|
||||||
|
- npm run coverage
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
firefox: 'latest'
|
firefox: 'latest'
|
||||||
@@ -18,3 +19,6 @@ addons:
|
|||||||
before_script:
|
before_script:
|
||||||
- export DISPLAY=:99.0
|
- export DISPLAY=:99.0
|
||||||
- sh -e /etc/init.d/xvfb start
|
- sh -e /etc/init.d/xvfb start
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- npm run coverage-publish
|
||||||
|
@@ -5,7 +5,7 @@ libp2p-swarm JavaScript implementation
|
|||||||
[](http://ipfs.io/)
|
[](http://ipfs.io/)
|
||||||
[](http://webchat.freenode.net/?channels=%23ipfs)
|
[](http://webchat.freenode.net/?channels=%23ipfs)
|
||||||
[](https://travis-ci.org/diasdavid/js-libp2p-swarm)
|
[](https://travis-ci.org/diasdavid/js-libp2p-swarm)
|
||||||

|
[](https://coveralls.io/github/diasdavid/js-libp2p-swarm?branch=master)
|
||||||
[](https://david-dm.org/ipfs/js-libp2p-swarm)
|
[](https://david-dm.org/ipfs/js-libp2p-swarm)
|
||||||
[](https://github.com/feross/standard)
|
[](https://github.com/feross/standard)
|
||||||
|
|
||||||
|
12
circle.yml
Normal file
12
circle.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
machine:
|
||||||
|
node:
|
||||||
|
version: stable
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
pre:
|
||||||
|
- google-chrome --version
|
||||||
|
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
||||||
|
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
|
||||||
|
- sudo apt-get update
|
||||||
|
- sudo apt-get --only-upgrade install google-chrome-stable
|
||||||
|
- google-chrome --version
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "libp2p-swarm",
|
"name": "libp2p-swarm",
|
||||||
"version": "0.10.3",
|
"version": "0.10.5",
|
||||||
"description": "libp2p swarm implementation in JavaScript",
|
"description": "libp2p swarm implementation in JavaScript",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"jsnext:main": "src/index.js",
|
"jsnext:main": "src/index.js",
|
||||||
@@ -13,7 +13,8 @@
|
|||||||
"release": "gulp release",
|
"release": "gulp release",
|
||||||
"release-minor": "gulp release --minor",
|
"release-minor": "gulp release --minor",
|
||||||
"release-major": "gulp release --major",
|
"release-major": "gulp release --major",
|
||||||
"coverage": "gulp coverage"
|
"coverage": "gulp coverage",
|
||||||
|
"coverage-publish": "aegir-coverage publish"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -39,7 +40,7 @@
|
|||||||
"bl": "^1.1.2",
|
"bl": "^1.1.2",
|
||||||
"buffer-loader": "0.0.1",
|
"buffer-loader": "0.0.1",
|
||||||
"chai": "^3.5.0",
|
"chai": "^3.5.0",
|
||||||
"aegir": "^2.0.0",
|
"aegir": "^2.1.0",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"istanbul": "^0.4.2",
|
"istanbul": "^0.4.2",
|
||||||
"libp2p-multiplex": "^0.2.1",
|
"libp2p-multiplex": "^0.2.1",
|
||||||
|
@@ -11,7 +11,7 @@ const WebSockets = require('libp2p-websockets')
|
|||||||
const spdy = require('libp2p-spdy')
|
const spdy = require('libp2p-spdy')
|
||||||
|
|
||||||
describe('high level API - with everything mixed all together!', function () {
|
describe('high level API - with everything mixed all together!', function () {
|
||||||
this.timeout(20000)
|
this.timeout(100000)
|
||||||
|
|
||||||
var swarmA // tcp
|
var swarmA // tcp
|
||||||
var peerA
|
var peerA
|
||||||
|
Reference in New Issue
Block a user