File tree 5 files changed +11
-13
lines changed
5 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -4,25 +4,16 @@ language: node_js
4
4
5
5
matrix :
6
6
include :
7
- - node_js : 6
8
- env : CXX=g++-4.8
9
7
- node_js : 8
10
8
env : CXX=g++-4.8
11
- # - node_js: stable
12
- # env: CXX=g++-4.8
13
9
14
10
script :
15
- - npm run lint
16
11
- npm run test
17
- - npm run coverage
18
12
19
13
before_script :
20
14
- export DISPLAY=:99.0
21
15
- sh -e /etc/init.d/xvfb start
22
16
23
- after_success :
24
- - npm run coverage-publish
25
-
26
17
addons :
27
18
firefox : ' latest'
28
19
apt :
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ machine:
3
3
node :
4
4
version : stable
5
5
6
+ test :
7
+ pre :
8
+ - npm run lint
9
+ post :
10
+ - make test
11
+ - npm run coverage -- --upload --providers coveralls
12
+
6
13
dependencies :
7
14
pre :
8
15
- google-chrome --version
Original file line number Diff line number Diff line change 37
37
"npm" : " >=3.0.0"
38
38
},
39
39
"devDependencies" : {
40
- "aegir" : " ^12.4.0 " ,
40
+ "aegir" : " ^13.0.1 " ,
41
41
"buffer-loader" : " 0.0.1" ,
42
42
"chai" : " ^4.1.2" ,
43
43
"dirty-chai" : " ^2.0.1" ,
44
44
"gulp" : " ^3.9.1" ,
45
- "libp2p-multiplex " : " ~0.5.1 " ,
45
+ "libp2p-mplex " : " ~0.6.0 " ,
46
46
"libp2p-secio" : " ~0.9.2" ,
47
47
"libp2p-spdy" : " ~0.11.0" ,
48
48
"libp2p-tcp" : " ~0.11.5" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const expect = chai.expect
7
7
chai . use ( dirtyChai )
8
8
const parallel = require ( 'async/parallel' )
9
9
const TCP = require ( 'libp2p-tcp' )
10
- const multiplex = require ( 'libp2p-multiplex ' )
10
+ const multiplex = require ( 'libp2p-mplex ' )
11
11
const pull = require ( 'pull-stream' )
12
12
const secio = require ( 'libp2p-secio' )
13
13
const PeerBook = require ( 'peer-book' )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ chai.use(dirtyChai)
9
9
10
10
const parallel = require ( 'async/parallel' )
11
11
const TCP = require ( 'libp2p-tcp' )
12
- const multiplex = require ( 'libp2p-multiplex ' )
12
+ const multiplex = require ( 'libp2p-mplex ' )
13
13
const spdy = require ( 'libp2p-spdy' )
14
14
const pull = require ( 'pull-stream' )
15
15
const PeerBook = require ( 'peer-book' )
You can’t perform that action at this time.
0 commit comments