Skip to content

Commit

Permalink
Skip more Stream tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmusso committed May 16, 2017
1 parent 70f1c00 commit 24f9803
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe.skip('.stream()', function() {
});
});

it('should handle bound parameters', function(done) {
it.skip('should handle bound parameters', function(done) {
var client = gremlin.createClient();
var s = client.stream('g.V(x)', { x: 1 });

Expand All @@ -31,7 +31,7 @@ describe.skip('.stream()', function() {
});
});

it('should handle optional args', function(done) {
it.skip('should handle optional args', function(done) {
var client = gremlin.createClient();
var s = client.stream('g.V(1)', null, { args: { language: 'gremlin-groovy' }});

Expand All @@ -57,7 +57,7 @@ describe.skip('.stream()', function() {
});
});

it('should handle errors', function(done) {
it.skip('should handle errors', function(done) {
var client = gremlin.createClient();
// pass a buggy script (missing parenthese)
var script = 'g.V(';
Expand Down

0 comments on commit 24f9803

Please sign in to comment.