aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test/interop_sanity_test.js
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-23 14:54:33 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-23 14:54:33 -0800
commitc0748898293935517ca390977a55db6ea1424f50 (patch)
tree339a2760dbd48aaba03426c4de8dc286496848fe /src/node/test/interop_sanity_test.js
parent8b433a2d1d9c2eb7d76e453cd3f0322adfce1f24 (diff)
parent10f4620e93bd1a398907e7ce3f5f1528f7be61e4 (diff)
Merge github.com:google/grpc into kill-more-printf
Diffstat (limited to 'src/node/test/interop_sanity_test.js')
-rw-r--r--src/node/test/interop_sanity_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/test/interop_sanity_test.js b/src/node/test/interop_sanity_test.js
index 410b050e8d..3c062b9788 100644
--- a/src/node/test/interop_sanity_test.js
+++ b/src/node/test/interop_sanity_test.js
@@ -52,7 +52,8 @@ describe('Interop tests', function() {
it('should pass empty_unary', function(done) {
interop_client.runTest(port, name_override, 'empty_unary', true, done);
});
- it('should pass large_unary', function(done) {
+ // This fails due to an unknown bug
+ it.skip('should pass large_unary', function(done) {
interop_client.runTest(port, name_override, 'large_unary', true, done);
});
it('should pass client_streaming', function(done) {
@@ -64,7 +65,6 @@ describe('Interop tests', function() {
it('should pass ping_pong', function(done) {
interop_client.runTest(port, name_override, 'ping_pong', true, done);
});
- // This depends on the new invoke API
it.skip('should pass empty_stream', function(done) {
interop_client.runTest(port, name_override, 'empty_stream', true, done);
});