From 7a15a1cccb989b6352322951392ae2463ae22494 Mon Sep 17 00:00:00 2001 From: Justin Timmons Date: Wed, 15 Nov 2023 20:51:48 -0500 Subject: [PATCH] build(grpc-reflection): moved reflection tests to proper job and added test coverage --- gulpfile.ts | 4 ++-- package.json | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index 3bdd6bb6..2c2c2e37 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -37,11 +37,11 @@ const clean = gulp.series(jsCore.clean, protobuf.clean, jsXds.clean); const cleanAll = gulp.series(jsXds.cleanAll, jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll); -const nativeTestOnly = gulp.parallel(healthCheck.test, reflection.test); +const nativeTestOnly = gulp.parallel(healthCheck.test); const nativeTest = gulp.series(build, nativeTestOnly); -const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test); +const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test, reflection.test); const test = gulp.series(build, testOnly, internalTest.test); diff --git a/package.json b/package.json index 70a15fbb..a1fd3d59 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,8 @@ "include": [ "packages/grpc-health-check/health.js", "packages/grpc-js/build/src/*", - "packages/proto-loader/build/src/*" + "packages/proto-loader/build/src/*", + "packages/grpc-reflection/build/src/*" ], "cache": true, "all": true