File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ language: node_js
2
2
node_js :
3
3
- ' 4'
4
4
- ' 6'
5
- - ' 7 '
5
+ - ' 8 '
6
6
sudo : false
7
7
git :
8
8
depth : 1
@@ -16,10 +16,6 @@ matrix:
16
16
env : BROWSER_NAME=safari BROWSER_VERSION=latest
17
17
- node_js : ' node'
18
18
env : BROWSER_NAME=firefox BROWSER_VERSION=latest
19
- - node_js : ' node'
20
- env : BROWSER_NAME=ie BROWSER_VERSION=6
21
- - node_js : ' node'
22
- env : BROWSER_NAME=ie BROWSER_VERSION=7
23
19
- node_js : ' node'
24
20
env : BROWSER_NAME=ie BROWSER_VERSION=8
25
21
- node_js : ' node'
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ describe('socket', function () {
111
111
var socket = io ( '/' , { forceNew : true , query : { e : 'f' } } ) ;
112
112
113
113
socket . emit ( 'getHandshake' , function ( handshake ) {
114
- console . log ( 'getHandhskae' , handshake ) ;
115
114
expect ( handshake . query . e ) . to . be ( 'f' ) ;
116
115
socket . disconnect ( ) ;
117
116
done ( ) ;
@@ -122,7 +121,6 @@ describe('socket', function () {
122
121
var socket = io ( '/?c=d' , { forceNew : true } ) ;
123
122
124
123
socket . emit ( 'getHandshake' , function ( handshake ) {
125
- console . log ( 'getHandhskae' , handshake ) ;
126
124
expect ( handshake . query . c ) . to . be ( 'd' ) ;
127
125
socket . disconnect ( ) ;
128
126
done ( ) ;
You can’t perform that action at this time.
0 commit comments