aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-10-08 11:07:16 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-10-08 11:07:16 -0700
commitb8ceb7c5500e70b669329878dda35156a9306175 (patch)
tree0305ab32b60c56fdcfd0d4af364b21f5a4c53ff3 /src/node/test
parent30df27aee191cfeea3ceb9e0993ef91d48343cad (diff)
Added remaining implementable node interop tests, except compression
Diffstat (limited to 'src/node/test')
-rw-r--r--src/node/test/interop_sanity_test.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/node/test/interop_sanity_test.js b/src/node/test/interop_sanity_test.js
index 804c1d45e4..f008a87585 100644
--- a/src/node/test/interop_sanity_test.js
+++ b/src/node/test/interop_sanity_test.js
@@ -94,4 +94,12 @@ describe('Interop tests', function() {
interop_client.runTest(port, name_override, 'custom_metadata',
true, true, done);
});
+ it('should pass status_code_and_message', function(done) {
+ interop_client.runTest(port, name_override, 'status_code_and_message',
+ true, true, done);
+ });
+ it('should pass unimplemented_method', function(done) {
+ interop_client.runTest(port, name_override, 'unimplemented_method',
+ true, true, done);
+ });
});