From 22b258bc4ef07f16edc07bbd4c53b0947f71ed64 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 20 Jun 2019 14:40:19 -0400 Subject: [PATCH] test: enable grpc-js Server interop testing This commit enables interop testing with the grpc-js Server. --- test/gulpfile.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/gulpfile.ts b/test/gulpfile.ts index f5762d3c..be18c5fa 100644 --- a/test/gulpfile.ts +++ b/test/gulpfile.ts @@ -56,8 +56,8 @@ const test = () => { runTestsArgPairs = [ ['native', 'native'], ['native', 'js'], - // ['js', 'native'], - // ['js', 'js'] + ['js', 'native'], + ['js', 'js'] ]; } else { runTestsArgPairs = [ @@ -73,4 +73,4 @@ export { install, cleanAll, test -}; \ No newline at end of file +};