@@ -18,7 +18,7 @@ describe.skip('.stream()', function() {
1818 } ) ;
1919 } ) ;
2020
21- it ( 'should handle bound parameters' , function ( done ) {
21+ it . skip ( 'should handle bound parameters' , function ( done ) {
2222 var client = gremlin . createClient ( ) ;
2323 var s = client . stream ( 'g.V(x)' , { x : 1 } ) ;
2424
@@ -31,7 +31,7 @@ describe.skip('.stream()', function() {
3131 } ) ;
3232 } ) ;
3333
34- it ( 'should handle optional args' , function ( done ) {
34+ it . skip ( 'should handle optional args' , function ( done ) {
3535 var client = gremlin . createClient ( ) ;
3636 var s = client . stream ( 'g.V(1)' , null , { args : { language : 'nashorn' } } ) ;
3737
@@ -44,7 +44,7 @@ describe.skip('.stream()', function() {
4444 } ) ;
4545 } ) ;
4646
47- it ( 'should handle bindings and optional args' , function ( done ) {
47+ it . skip ( 'should handle bindings and optional args' , function ( done ) {
4848 var client = gremlin . createClient ( ) ;
4949 var s = client . stream ( 'g.V(id)' , { id : 1 } , { args : { language : 'nashorn' } } ) ;
5050
@@ -57,7 +57,7 @@ describe.skip('.stream()', function() {
5757 } ) ;
5858 } ) ;
5959
60- it ( 'should handle errors' , function ( done ) {
60+ it . skip ( 'should handle errors' , function ( done ) {
6161 var client = gremlin . createClient ( ) ;
6262 // pass a buggy script (missing parenthese)
6363 var script = 'g.V(' ;
0 commit comments