@@ -18,7 +18,7 @@ describe.skip('.stream()', function() {
18
18
} ) ;
19
19
} ) ;
20
20
21
- it ( 'should handle bound parameters' , function ( done ) {
21
+ it . skip ( 'should handle bound parameters' , function ( done ) {
22
22
var client = gremlin . createClient ( ) ;
23
23
var s = client . stream ( 'g.V(x)' , { x : 1 } ) ;
24
24
@@ -31,7 +31,7 @@ describe.skip('.stream()', function() {
31
31
} ) ;
32
32
} ) ;
33
33
34
- it ( 'should handle optional args' , function ( done ) {
34
+ it . skip ( 'should handle optional args' , function ( done ) {
35
35
var client = gremlin . createClient ( ) ;
36
36
var s = client . stream ( 'g.V(1)' , null , { args : { language : 'nashorn' } } ) ;
37
37
@@ -44,7 +44,7 @@ describe.skip('.stream()', function() {
44
44
} ) ;
45
45
} ) ;
46
46
47
- it ( 'should handle bindings and optional args' , function ( done ) {
47
+ it . skip ( 'should handle bindings and optional args' , function ( done ) {
48
48
var client = gremlin . createClient ( ) ;
49
49
var s = client . stream ( 'g.V(id)' , { id : 1 } , { args : { language : 'nashorn' } } ) ;
50
50
@@ -57,7 +57,7 @@ describe.skip('.stream()', function() {
57
57
} ) ;
58
58
} ) ;
59
59
60
- it ( 'should handle errors' , function ( done ) {
60
+ it . skip ( 'should handle errors' , function ( done ) {
61
61
var client = gremlin . createClient ( ) ;
62
62
// pass a buggy script (missing parenthese)
63
63
var script = 'g.V(' ;
0 commit comments