diff options
author | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-02-17 18:33:44 -0800 |
---|---|---|
committer | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-02-17 18:33:44 -0800 |
commit | 0a9ae3d23d48667d3fe915b233e4d5cab55be92f (patch) | |
tree | a54a3e332cfe391691f000b73b20dfc6b1d1d99d /src/node/test/interop_sanity_test.js | |
parent | dcdec3c3b6feac0da0d574bd09c1b1d55194d23d (diff) | |
parent | ffbcaaf18ecc4aabdc3938c8ccaccc554c35da60 (diff) |
Merge pull request #504 from murgatroid99/node_new_core_api
Rewrite the Node library to use the new core call API
Diffstat (limited to 'src/node/test/interop_sanity_test.js')
-rw-r--r-- | src/node/test/interop_sanity_test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/test/interop_sanity_test.js b/src/node/test/interop_sanity_test.js index 7ecaad833d..81cd9fa5b9 100644 --- a/src/node/test/interop_sanity_test.js +++ b/src/node/test/interop_sanity_test.js @@ -56,7 +56,7 @@ describe('Interop tests', function() { interop_client.runTest(port, name_override, 'empty_unary', true, done); }); // This fails due to an unknown bug - it.skip('should pass large_unary', function(done) { + it('should pass large_unary', function(done) { interop_client.runTest(port, name_override, 'large_unary', true, done); }); it('should pass client_streaming', function(done) { |